This commit is contained in:
Chomp
2025-07-29 19:56:55 +01:00
818 changed files with 1035446 additions and 263811 deletions
+6 -8
View File
@@ -1,23 +1,21 @@
# editorconfig.org
# top-most EditorConfig file
root = true
# Default settings:
# A newline ending every file
# Use 4 spaces as indentation
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
max_line_length = 140
[{*.yaml,*.yml}]
charset = utf-8
indent_size = 2
[*.json]
ij_formatter_enabled = true
charset = utf-8
indent_size = 2
ij_formatter_enabled = true
# C# files
[*.cs]
@@ -152,4 +150,4 @@ resharper_merge_into_pattern_highlighting = none
indent_size = 2
[*.{csproj,vbproj,proj,nativeproj,locproj}]
charset = utf-8
charset = utf-8
-37
View File
@@ -1,37 +0,0 @@
name: .NET Format
on:
push:
branches:
- develop
pull_request:
branches-ignore:
- main
jobs:
dotnet-format:
if: "!contains(github.event.head_commit.message, '.NET Format Style Fixes')"
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.BYPASS_WORKFLOW_PAT }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0
- name: Restore Tool Dependencies
run: dotnet tool install -g csharpier
- name: CSharpier Format
run: csharpier format .
- uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: .NET Format Style Fixes
commit_user_name: Format Bot
+191
View File
@@ -0,0 +1,191 @@
name: Format
on:
push:
branches:
- develop
pull_request:
branches-ignore:
- main
jobs:
dotnet-format:
if: "!contains(github.event.head_commit.message, 'Format Style Fixes')"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.BYPASS_WORKFLOW_PAT || github.token }}
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 9.0
- name: Restore Tool Dependencies
run: dotnet tool install -g csharpier
- name: CSharpier Format
run: csharpier format .
- name: Check for Changes
id: check-changes
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "changes=true" >> $GITHUB_OUTPUT
else
echo "changes=false" >> $GITHUB_OUTPUT
fi
- name: Upload Changes as Artifact
if: steps.check-changes.outputs.changes == 'true' && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: dotnet-changes
path: |
**/*.cs
**/*.csproj
retention-days: 1
compression-level: 1
- name: Fail PR if Changes Detected
if: steps.check-changes.outputs.changes == 'true' && github.event_name == 'pull_request'
run: |
echo "::error::Code formatting issues found. Please run 'csharpier format .' locally and push the changes to your PR branch. Read the 'README.md' file for more information."
git status --porcelain
exit 1
biome-format:
if: "!contains(github.event.head_commit.message, 'Format Style Fixes')"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.BYPASS_WORKFLOW_PAT || github.token }}
- name: Setup Biome
uses: biomejs/setup-biome@v2
with:
version: latest
- name: Create Biome Config
run: |
cat > biome.json << 'EOF'
{
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"files": {
"maxSize": 20971520,
"includes": [
"**/*.json",
"!**/looseLoot.json",
"!**/items.json"
]
},
"formatter": {
"useEditorconfig": true
},
"javascript": {
"formatter": {
"enabled": false
}
},
"json": {
"formatter": {
"enabled": true,
"lineWidth": 120,
"trailingCommas": "none",
"bracketSpacing": true,
"expand": "always"
},
"parser": {
"allowComments": true,
"allowTrailingCommas": true
},
"linter": {
"enabled": false
}
}
}
EOF
- name: Format JSON Files
run: |
biome format --write . || true
- name: Remove Biome Config
if: always()
run: rm -f biome.json
- name: Check for Changes
id: check-changes
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "changes=true" >> $GITHUB_OUTPUT
else
echo "changes=false" >> $GITHUB_OUTPUT
fi
- name: Upload Changes as Artifact
if: steps.check-changes.outputs.changes == 'true' && github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: biome-changes
path: |
**/*.json
retention-days: 1
compression-level: 1
- name: Fail PR if Changes Detected
if: steps.check-changes.outputs.changes == 'true' && github.event_name == 'pull_request'
run: |
echo "::error::JSON formatting issues found. Please run BiomeJS locally to format your JSON files and push the changes to your PR branch."
git status --porcelain
exit 1
commit-changes:
if: github.event_name != 'pull_request' && !contains(github.event.head_commit.message, 'Format Style Fixes')
needs: [dotnet-format, biome-format]
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
with:
token: ${{ secrets.BYPASS_WORKFLOW_PAT || github.token }}
- name: Download Dotnet Changes
uses: actions/download-artifact@v4
with:
name: dotnet-changes
continue-on-error: true
- name: Download Biome Changes
uses: actions/download-artifact@v4
with:
name: biome-changes
continue-on-error: true
- name: Check for Any Changes
id: check-changes
run: |
if [[ -n $(git status --porcelain) ]]; then
echo "changes=true" >> $GITHUB_OUTPUT
else
echo "changes=false" >> $GITHUB_OUTPUT
fi
- name: Auto Commit Changes
if: steps.check-changes.outputs.changes == 'true'
uses: stefanzweifel/git-auto-commit-action@v6
with:
commit_message: Format Style Fixes
commit_user_name: sp-tarkov-bot
commit_user_email: singleplayertarkov@gmail.com
commit_author: sp-tarkov-bot <singleplayertarkov@gmail.com>
+8 -1
View File
@@ -13,7 +13,14 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
lfs: false
- name: Configure Git LFS
run: |
git lfs install
git config -f .lfsconfig lfs.url https://lfs.sp-tarkov.com/sp-tarkov/server-csharp
git config -f .lfsconfig lfs.locksverify false
git lfs pull
- name: Setup .NET
uses: actions/setup-dotnet@v4
+1 -1
View File
@@ -1,3 +1,3 @@
[lfs]
url = https://lfs.sp-tarkov.com/sp-tarkov/server-csharp
url = https://lfs.sp-tarkov.com/sp-tarkov/server-csharp
locksverify = false
+1 -1
View File
@@ -6,7 +6,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<PackageReference Include="FastCloner" Version="3.3.8" />
<PackageReference Include="FastCloner" Version="3.3.10" />
<ProjectReference Include="..\Libraries\SPTarkov.Server.Core\SPTarkov.Server.Core.csproj" />
<ProjectReference Include="..\Libraries\SPTarkov.Server.Assets\SPTarkov.Server.Assets.csproj" />
<ProjectReference Include="..\Libraries\SPTarkov.Common\SPTarkov.Common.csproj" />
+1
View File
@@ -3,6 +3,7 @@ using Benchmarks.Mock;
using SPTarkov.Server.Core.Models.Spt.Templates;
using SPTarkov.Server.Core.Utils;
using SPTarkov.Server.Core.Utils.Cloners;
using SPTarkov.Server.Core.Utils.Json;
using SPTarkov.Server.Core.Utils.Json.Converters;
namespace Benchmarks;
+3 -4
View File
@@ -1,5 +1,4 @@
using System;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Attributes;
using SPTarkov.Server.Core.Utils;
namespace Benchmarks
@@ -11,8 +10,8 @@ namespace Benchmarks
private MathUtil _mathUtil;
private double input = 15d;
private new List<double> x = [1, 10, 20, 30, 40, 50, 60];
private new List<double> y = [11000, 20000, 32000, 45000, 58000, 70000, 82000];
private List<double> x = [1, 10, 20, 30, 40, 50, 60];
private List<double> y = [11000, 20000, 32000, 45000, 58000, 70000, 82000];
[GlobalSetup]
public void Setup()
+2 -12
View File
@@ -6,12 +6,7 @@ namespace Benchmarks.Mock;
public class MockLogger<T> : ISptLogger<T>
{
public void LogWithColor(
string data,
LogTextColor? textColor = null,
LogBackgroundColor? backgroundColor = null,
Exception? ex = null
)
public void LogWithColor(string data, LogTextColor? textColor = null, LogBackgroundColor? backgroundColor = null, Exception? ex = null)
{
throw new NotImplementedException();
}
@@ -72,12 +67,7 @@ public class MockLogger<T> : ISptLogger<T>
throw new NotImplementedException();
}
public void LogWithColor(
string data,
Exception? ex = null,
LogTextColor? textColor = null,
LogBackgroundColor? backgroundColor = null
)
public void LogWithColor(string data, Exception? ex = null, LogTextColor? textColor = null, LogBackgroundColor? backgroundColor = null)
{
Console.WriteLine(data);
}
+1 -1
View File
@@ -64,4 +64,4 @@
"sha512": ""
}
}
}
}
+1 -1
View File
@@ -10,4 +10,4 @@
"System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false
}
}
}
}
@@ -8,10 +8,7 @@ public static class MemberInfoExtensions
public static string GetJsonName(this MemberInfo memberInfo)
{
return Attribute.IsDefined(memberInfo, typeof(JsonPropertyNameAttribute))
? (
Attribute.GetCustomAttribute(memberInfo, typeof(JsonPropertyNameAttribute))
as JsonPropertyNameAttribute
).Name
? (Attribute.GetCustomAttribute(memberInfo, typeof(JsonPropertyNameAttribute)) as JsonPropertyNameAttribute).Name
: memberInfo.Name;
}
}
@@ -6,8 +6,7 @@ namespace SPTarkov.Common.Extensions;
public static class ObjectExtensions
{
private static readonly Dictionary<Type, Dictionary<string, PropertyInfo>> _indexedProperties =
new();
private static readonly Dictionary<Type, Dictionary<string, PropertyInfo>> _indexedProperties = new();
private static readonly Lock _indexedPropertiesLockObject = new();
private static bool TryGetCachedProperty(Type type, string key, out PropertyInfo cachedProperty)
@@ -16,8 +15,7 @@ public static class ObjectExtensions
{
if (!_indexedProperties.TryGetValue(type, out var properties))
{
properties = type.GetProperties()
.ToDictionary(prop => prop.GetJsonName(), prop => prop);
properties = type.GetProperties().ToDictionary(prop => prop.GetJsonName(), prop => prop);
_indexedProperties.Add(type, properties);
}
@@ -8,11 +8,7 @@ public static class StringExtensions
private static readonly Dictionary<string, Regex> _regexCache = new();
private static readonly Lock _regexCacheLock = new();
public static string RegexReplace(
this string source,
[StringSyntax(StringSyntaxAttribute.Regex)] string regexString,
string newValue
)
public static string RegexReplace(this string source, [StringSyntax(StringSyntaxAttribute.Regex)] string regexString, string newValue)
{
Regex regex;
lock (_regexCacheLock)
@@ -11,6 +11,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SemanticVersioning" Version="3.0.0" />
@@ -1,11 +1,8 @@
namespace SPTarkov.DI.Annotations;
[AttributeUsage(AttributeTargets.Class, Inherited = false)]
public class Injectable(
InjectionType injectionType = InjectionType.Scoped,
Type? typeOverride = null,
int typePriority = int.MaxValue
) : Attribute
public class Injectable(InjectionType injectionType = InjectionType.Scoped, Type? typeOverride = null, int typePriority = int.MaxValue)
: Attribute
{
public InjectionType InjectionType { get; set; } = injectionType;
@@ -36,8 +36,7 @@ public class DependencyInjectionHandler(IServiceCollection serviceCollection)
public void AddInjectableTypesFromTypeList(IEnumerable<Type> types)
{
var typesToInject = types.Where(type =>
Attribute.IsDefined(type, typeof(Injectable))
&& !_injectedTypeNames.ContainsKey($"{type.Namespace}.{type.Name}")
Attribute.IsDefined(type, typeof(Injectable)) && !_injectedTypeNames.ContainsKey($"{type.Namespace}.{type.Name}")
);
if (typesToInject.Any())
{
@@ -52,9 +51,7 @@ public class DependencyInjectionHandler(IServiceCollection serviceCollection)
{
if (_oneTimeUseFlag)
{
throw new Exception(
"Invalid usage of DependencyInjectionHandler, this is a one time use service!"
);
throw new Exception("Invalid usage of DependencyInjectionHandler, this is a one time use service!");
}
_oneTimeUseFlag = true;
var typeRefValues = _injectedTypeNames.Values.Select(t => new TypeRefContainer(
@@ -74,33 +71,19 @@ public class DependencyInjectionHandler(IServiceCollection serviceCollection)
// All the components without the removed overrides
var cleanedComponents = typeRefValues.Where(tr =>
{
var name = string.IsNullOrEmpty(tr.Type.FullName)
? $"{tr.Type.Namespace}.{tr.Type.Name}"
: tr.Type.FullName!;
var name = string.IsNullOrEmpty(tr.Type.FullName) ? $"{tr.Type.Namespace}.{tr.Type.Name}" : tr.Type.FullName!;
return !componentsToRemove.Contains(name);
});
// All the components sorted and ready to be inserted into the DI container
var sortedInjectableTypes = cleanedComponents.OrderBy(tRef =>
tRef.InjectableAttribute.TypePriority
);
var sortedInjectableTypes = cleanedComponents.OrderBy(tRef => tRef.InjectableAttribute.TypePriority);
foreach (var typeRefToInject in sortedInjectableTypes)
{
var nodes = new Queue<TypeRefContainer>();
nodes.Enqueue(typeRefToInject);
foreach (
var implementedInterface in typeRefToInject
.Type.GetInterfaces()
.Where(t => !t.Namespace.StartsWith("System"))
)
foreach (var implementedInterface in typeRefToInject.Type.GetInterfaces().Where(t => !t.Namespace.StartsWith("System")))
{
nodes.Enqueue(
new TypeRefContainer(
typeRefToInject.InjectableAttribute,
typeRefToInject.Type,
implementedInterface
)
);
nodes.Enqueue(new TypeRefContainer(typeRefToInject.InjectableAttribute, typeRefToInject.Type, implementedInterface));
}
while (nodes.Any())
@@ -108,13 +91,7 @@ public class DependencyInjectionHandler(IServiceCollection serviceCollection)
var node = nodes.Dequeue();
if (node.Type.BaseType != null && node.Type.BaseType != typeof(object))
{
nodes.Enqueue(
new TypeRefContainer(
node.InjectableAttribute,
typeRefToInject.Type,
node.Type.BaseType
)
);
nodes.Enqueue(new TypeRefContainer(node.InjectableAttribute, typeRefToInject.Type, node.Type.BaseType));
}
if (node.Type.IsGenericType)
@@ -123,11 +100,7 @@ public class DependencyInjectionHandler(IServiceCollection serviceCollection)
}
else
{
RegisterComponent(
node.InjectableAttribute.InjectionType,
node.Type,
node.ParentType
);
RegisterComponent(node.InjectableAttribute.InjectionType, node.Type, node.ParentType);
}
}
}
@@ -137,10 +110,7 @@ public class DependencyInjectionHandler(IServiceCollection serviceCollection)
{
try
{
_allLoadedTypes ??= AppDomain
.CurrentDomain.GetAssemblies()
.SelectMany(t => t.GetTypes())
.ToList();
_allLoadedTypes ??= AppDomain.CurrentDomain.GetAssemblies().SelectMany(t => t.GetTypes()).ToList();
}
catch (ReflectionTypeLoadException ex)
{
@@ -153,11 +123,7 @@ public class DependencyInjectionHandler(IServiceCollection serviceCollection)
try
{
var matchedConstructors = _allConstructors.Where(c =>
c.GetParameters()
.Any(p =>
p.ParameterType.IsGenericType
&& p.ParameterType.GetGenericTypeDefinition().FullName == typeName
)
c.GetParameters().Any(p => p.ParameterType.IsGenericType && p.ParameterType.GetGenericTypeDefinition().FullName == typeName)
);
var constructorInfos = matchedConstructors.ToList();
@@ -169,19 +135,11 @@ public class DependencyInjectionHandler(IServiceCollection serviceCollection)
foreach (var matchedConstructor in constructorInfos)
{
var constructorParams = matchedConstructor.GetParameters();
foreach (
var parameterInfo in constructorParams.Where(x =>
IsMatchingGenericType(x, typeName)
)
)
foreach (var parameterInfo in constructorParams.Where(x => IsMatchingGenericType(x, typeName)))
{
var parameters = parameterInfo.ParameterType.GetGenericArguments();
var typedGeneric = typeRef.ParentType.MakeGenericType(parameters);
RegisterComponent(
typeRef.InjectableAttribute.InjectionType,
parameterInfo.ParameterType,
typedGeneric
);
RegisterComponent(typeRef.InjectableAttribute.InjectionType, parameterInfo.ParameterType, typedGeneric);
}
}
}
@@ -194,15 +152,10 @@ public class DependencyInjectionHandler(IServiceCollection serviceCollection)
private static bool IsMatchingGenericType(ParameterInfo paramInfo, string typeName)
{
return paramInfo.ParameterType.IsGenericType
&& paramInfo.ParameterType.GetGenericTypeDefinition().FullName == typeName;
return paramInfo.ParameterType.IsGenericType && paramInfo.ParameterType.GetGenericTypeDefinition().FullName == typeName;
}
private void RegisterComponent(
InjectionType injectionType,
Type registrableInterface,
Type implementationType
)
private void RegisterComponent(InjectionType injectionType, Type registrableInterface, Type implementationType)
{
switch (injectionType)
{
+2 -4
View File
@@ -11,12 +11,10 @@
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
</PropertyGroup>
<ItemGroup>
<PackageReference
Include="Microsoft.Extensions.DependencyInjection.Abstractions"
Version="9.0.5"
/>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SPTarkov.Common\SPTarkov.Common.csproj" />
@@ -1,11 +1,6 @@
namespace SPTarkov.DI;
public class SingletonStateHolder<T>
public class SingletonStateHolder<T>(T state)
{
public T State { get; }
public SingletonStateHolder(T state)
{
State = state;
}
public T State { get; } = state;
}
@@ -27,16 +27,9 @@ public class CodeGenerator
return new CodeInstruction(code.OpCode) { labels = GetLabelList(code) };
}
if (
code.OpCode == OpCodes.Ldfld
|| code.OpCode == OpCodes.Ldflda
|| code.OpCode == OpCodes.Stfld
)
if (code.OpCode == OpCodes.Ldfld || code.OpCode == OpCodes.Ldflda || code.OpCode == OpCodes.Stfld)
{
return new CodeInstruction(
code.OpCode,
AccessTools.Field(code.CallerType, code.OperandTarget as string)
)
return new CodeInstruction(code.OpCode, AccessTools.Field(code.CallerType, code.OperandTarget as string))
{
labels = GetLabelList(code),
};
@@ -44,10 +37,7 @@ public class CodeGenerator
if (code.OpCode == OpCodes.Call || code.OpCode == OpCodes.Callvirt)
{
return new CodeInstruction(
code.OpCode,
AccessTools.Method(code.CallerType, code.OperandTarget as string, code.Parameters)
)
return new CodeInstruction(code.OpCode, AccessTools.Method(code.CallerType, code.OperandTarget as string, code.Parameters))
{
labels = GetLabelList(code),
};
@@ -55,10 +45,7 @@ public class CodeGenerator
if (code.OpCode == OpCodes.Box)
{
return new CodeInstruction(code.OpCode, code.CallerType)
{
labels = GetLabelList(code),
};
return new CodeInstruction(code.OpCode, code.CallerType) { labels = GetLabelList(code) };
}
if (
@@ -70,18 +57,12 @@ public class CodeGenerator
|| code.OpCode == OpCodes.Br_S
)
{
return new CodeInstruction(code.OpCode, code.OperandTarget)
{
labels = GetLabelList(code),
};
return new CodeInstruction(code.OpCode, code.OperandTarget) { labels = GetLabelList(code) };
}
if (code.OpCode == OpCodes.Ldftn)
{
return new CodeInstruction(
code.OpCode,
AccessTools.Method(code.CallerType, code.OperandTarget as string, code.Parameters)
)
return new CodeInstruction(code.OpCode, AccessTools.Method(code.CallerType, code.OperandTarget as string, code.Parameters))
{
labels = GetLabelList(code),
};
@@ -91,8 +72,7 @@ public class CodeGenerator
{
return new CodeInstruction(
code.OpCode,
code.CallerType.GetConstructors()
.FirstOrDefault(x => x.GetParameters().Length == code.Parameters.Length)
code.CallerType.GetConstructors().FirstOrDefault(x => x.GetParameters().Length == code.Parameters.Length)
)
{
labels = GetLabelList(code),
@@ -24,13 +24,7 @@ public class CodeWithLabel : Code
Label = label;
}
public CodeWithLabel(
OpCode opCode,
Label label,
Type callerType,
object operandTarget,
Type[] parameters = null
)
public CodeWithLabel(OpCode opCode, Label label, Type callerType, object operandTarget, Type[] parameters = null)
: base(opCode, callerType, operandTarget, parameters)
{
Label = label;
@@ -33,9 +33,7 @@ public abstract class AbstractPatch
&& _ilManipulatorList.Count == 0
)
{
throw new Exception(
$"{_harmony.Id}: At least one of the patch methods must be specified"
);
throw new Exception($"{_harmony.Id}: At least one of the patch methods must be specified");
}
}
@@ -55,14 +53,7 @@ public abstract class AbstractPatch
var T = GetType();
var methods = new List<HarmonyMethod>();
foreach (
var method in T.GetMethods(
BindingFlags.Static
| BindingFlags.NonPublic
| BindingFlags.Public
| BindingFlags.DeclaredOnly
)
)
foreach (var method in T.GetMethods(BindingFlags.Static | BindingFlags.NonPublic | BindingFlags.Public | BindingFlags.DeclaredOnly))
{
if (method.GetCustomAttribute(attributeType) != null)
{
@@ -1,424 +1,445 @@
{
"airdropTypeWeightings": {
"mixed": 500,
"weaponArmor": 400,
"foodMedical": 100,
"barter": 100,
"radar": 0,
"toiletPaper": 1
},
"loot": {
"mixed": {
"icon": "Common",
"weaponPresetCount": {
"min": 3,
"max": 5
},
"armorPresetCount": {
"min": 1,
"max": 5
},
"itemCount": {
"min": 15,
"max": 35
},
"weaponCrateCount": {
"min": 1,
"max": 2
},
"itemBlacklist": [],
"itemTypeWhitelist": [
"543be5dd4bdc2deb348b4569",
"5485a8684bdc2da71d8b4567",
"5d650c3e815116009f6201d2",
"5448e8d64bdc2dce718b4568",
"5448e8d04bdc2ddf718b4569",
"5447e1d04bdc2dff2f8b4567",
"57864ee62459775490116fc1",
"5448e54d4bdc2dcc718b4568",
"5448e5284bdc2dcb718b4567",
"5448e53e4bdc2d60728b4567",
"5448f3a64bdc2d60728b456a",
"5448f3ac4bdc2dce718b4569",
"55818ad54bdc2ddc698b4569",
"55818af64bdc2d5b648b4570",
"55818b0e4bdc2dde698b456e",
"5448bc234bdc2d3c308b4569",
"57864ada245977548638de91",
"5645bcb74bdc2ded0b8b4578",
"5448e5724bdc2ddf718b4568",
"55818add4bdc2d5b648b456f",
"543be6564bdc2df4348b4568",
"57864bb7245977548b3b66c2",
"550aa4cd4bdc2dd8348b456c",
"5448f39d4bdc2d0a728b4568",
"5448f3a14bdc2d27728b4569",
"5447e1d04bdc2dff2f8b4567",
"55818b164bdc2ddc698b456c",
"55818ae44bdc2dde698b456c"
],
"itemLimits": {
"5447b5cf4bdc2d65278b4567": 1,
"5448e8d04bdc2ddf718b4569": 3,
"5448e8d64bdc2dce718b4568": 3,
"5448bc234bdc2d3c308b4569": 3,
"5448f3a64bdc2d60728b456a": 3,
"5448e54d4bdc2dcc718b4568": 3,
"5485a8684bdc2da71d8b4567": 4,
"57864bb7245977548b3b66c2": 2,
"57864ada245977548638de91": 3,
"5d650c3e815116009f6201d2": 2,
"5645bcb74bdc2ded0b8b4578": 2,
"5448e5724bdc2ddf718b4568": 2,
"55818add4bdc2d5b648b456f": 2,
"543be6564bdc2df4348b4568": 3,
"550aa4cd4bdc2dd8348b456c": 2,
"5448f39d4bdc2d0a728b4568": 4,
"5448f3a14bdc2d27728b4569": 2,
"5447e1d04bdc2dff2f8b4567": 1,
"55818ad54bdc2ddc698b4569": 3,
"55818b164bdc2ddc698b456c": 2,
"55818ae44bdc2dde698b456c": 2,
"5448e5284bdc2dcb718b4567": 2
},
"itemStackLimits": {
"5fc382a9d724d907e2077dab": {
"min": 5,
"max": 5
},
"59e690b686f7746c9f75e848": {
"min": 10,
"max": 25
},
"5449016a4bdc2d6f028b456f": {
"min": 5000,
"max": 50000
},
"569668774bdc2da2298b4568": {
"min": 100,
"max": 500
},
"5696686a4bdc2da3298b456a": {
"min": 100,
"max": 500
},
"5d235b4d86f7742e017bc88a": {
"min": 10,
"max": 50
}
},
"armorLevelWhitelist": [0, 4, 5, 6],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
"airdropTypeWeightings": {
"mixed": 500,
"weaponArmor": 400,
"foodMedical": 100,
"barter": 100,
"radar": 0,
"toiletPaper": 1
},
"loot": {
"mixed": {
"icon": "Common",
"weaponPresetCount": {
"min": 3,
"max": 5
},
"armorPresetCount": {
"min": 1,
"max": 5
},
"itemCount": {
"min": 15,
"max": 35
},
"weaponCrateCount": {
"min": 1,
"max": 2
},
"itemBlacklist": [],
"itemTypeWhitelist": [
"543be5dd4bdc2deb348b4569",
"5485a8684bdc2da71d8b4567",
"5d650c3e815116009f6201d2",
"5448e8d64bdc2dce718b4568",
"5448e8d04bdc2ddf718b4569",
"5447e1d04bdc2dff2f8b4567",
"57864ee62459775490116fc1",
"5448e54d4bdc2dcc718b4568",
"5448e5284bdc2dcb718b4567",
"5448e53e4bdc2d60728b4567",
"5448f3a64bdc2d60728b456a",
"5448f3ac4bdc2dce718b4569",
"55818ad54bdc2ddc698b4569",
"55818af64bdc2d5b648b4570",
"55818b0e4bdc2dde698b456e",
"5448bc234bdc2d3c308b4569",
"57864ada245977548638de91",
"5645bcb74bdc2ded0b8b4578",
"5448e5724bdc2ddf718b4568",
"55818add4bdc2d5b648b456f",
"543be6564bdc2df4348b4568",
"57864bb7245977548b3b66c2",
"550aa4cd4bdc2dd8348b456c",
"5448f39d4bdc2d0a728b4568",
"5448f3a14bdc2d27728b4569",
"5447e1d04bdc2dff2f8b4567",
"55818b164bdc2ddc698b456c",
"55818ae44bdc2dde698b456c"
],
"itemLimits": {
"5447b5cf4bdc2d65278b4567": 1,
"5448e8d04bdc2ddf718b4569": 3,
"5448e8d64bdc2dce718b4568": 3,
"5448bc234bdc2d3c308b4569": 3,
"5448f3a64bdc2d60728b456a": 3,
"5448e54d4bdc2dcc718b4568": 3,
"5485a8684bdc2da71d8b4567": 4,
"57864bb7245977548b3b66c2": 2,
"57864ada245977548638de91": 3,
"5d650c3e815116009f6201d2": 2,
"5645bcb74bdc2ded0b8b4578": 2,
"5448e5724bdc2ddf718b4568": 2,
"55818add4bdc2d5b648b456f": 2,
"543be6564bdc2df4348b4568": 3,
"550aa4cd4bdc2dd8348b456c": 2,
"5448f39d4bdc2d0a728b4568": 4,
"5448f3a14bdc2d27728b4569": 2,
"5447e1d04bdc2dff2f8b4567": 1,
"55818ad54bdc2ddc698b4569": 3,
"55818b164bdc2ddc698b456c": 2,
"55818ae44bdc2dde698b456c": 2,
"5448e5284bdc2dcb718b4567": 2
},
"itemStackLimits": {
"5fc382a9d724d907e2077dab": {
"min": 5,
"max": 5
},
"weaponArmor": {
"icon": "Weapon",
"weaponPresetCount": {
"min": 6,
"max": 8
},
"armorPresetCount": {
"min": 3,
"max": 6
},
"itemCount": {
"min": 11,
"max": 22
},
"weaponCrateCount": {
"min": 0,
"max": 2
},
"itemBlacklist": [],
"itemTypeWhitelist": [
"5485a8684bdc2da71d8b4567",
"5448e8d64bdc2dce718b4568",
"5448e8d04bdc2ddf718b4569",
"5447e1d04bdc2dff2f8b4567",
"5448e54d4bdc2dcc718b4568",
"5448e5284bdc2dcb718b4567",
"5448e53e4bdc2d60728b4567",
"55818ad54bdc2ddc698b4569",
"55818af64bdc2d5b648b4570",
"55818b0e4bdc2dde698b456e",
"5448bc234bdc2d3c308b4569",
"5645bcb74bdc2ded0b8b4578",
"5448e5724bdc2ddf718b4568",
"55818add4bdc2d5b648b456f",
"543be6564bdc2df4348b4568",
"550aa4cd4bdc2dd8348b456c",
"55818b164bdc2ddc698b456c",
"55818ae44bdc2dde698b456c"
],
"itemLimits": {
"5448e8d04bdc2ddf718b4569": 3,
"5448e8d64bdc2dce718b4568": 3,
"5448bc234bdc2d3c308b4569": 3,
"5448e54d4bdc2dcc718b4568": 3,
"5485a8684bdc2da71d8b4567": 4,
"5645bcb74bdc2ded0b8b4578": 2,
"5448e5724bdc2ddf718b4568": 2,
"55818add4bdc2d5b648b456f": 2,
"543be6564bdc2df4348b4568": 3,
"550aa4cd4bdc2dd8348b456c": 2,
"5447e1d04bdc2dff2f8b4567": 3,
"55818ad54bdc2ddc698b4569": 3,
"55818b164bdc2ddc698b456c": 2,
"55818ae44bdc2dde698b456c": 2,
"5448e5284bdc2dcb718b4567": 2
},
"itemStackLimits": {
"5fc382a9d724d907e2077dab": {
"min": 5,
"max": 5
},
"59e690b686f7746c9f75e848": {
"min": 10,
"max": 25
},
"5d235b4d86f7742e017bc88a": {
"min": 10,
"max": 50
}
},
"armorLevelWhitelist": [0, 3, 4, 5, 6],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
"59e690b686f7746c9f75e848": {
"min": 10,
"max": 25
},
"foodMedical": {
"icon": "Medical",
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 25,
"max": 45
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [],
"itemTypeWhitelist": [
"543be5dd4bdc2deb348b4569",
"5448e8d64bdc2dce718b4568",
"5448e8d04bdc2ddf718b4569",
"5448f3a64bdc2d60728b456a",
"5448f3ac4bdc2dce718b4569",
"5448f39d4bdc2d0a728b4568",
"5448f3a14bdc2d27728b4569"
],
"itemLimits": {
"5447b5cf4bdc2d65278b4567": 1,
"5448e8d04bdc2ddf718b4569": 3,
"5448e8d64bdc2dce718b4568": 3,
"5448bc234bdc2d3c308b4569": 3,
"5448f3a64bdc2d60728b456a": 3,
"5448e54d4bdc2dcc718b4568": 3,
"5485a8684bdc2da71d8b4567": 4,
"57864bb7245977548b3b66c2": 2,
"57864ada245977548638de91": 3,
"5d650c3e815116009f6201d2": 2,
"5645bcb74bdc2ded0b8b4578": 2,
"5448e5724bdc2ddf718b4568": 2,
"55818add4bdc2d5b648b456f": 2,
"543be6564bdc2df4348b4568": 3,
"550aa4cd4bdc2dd8348b456c": 2,
"5448f39d4bdc2d0a728b4568": 4,
"5448f3a14bdc2d27728b4569": 2,
"5447e1d04bdc2dff2f8b4567": 1,
"55818ad54bdc2ddc698b4569": 3,
"55818b164bdc2ddc698b456c": 2,
"55818ae44bdc2dde698b456c": 2,
"5448e5284bdc2dcb718b4567": 2
},
"itemStackLimits": {
"5fc382a9d724d907e2077dab": {
"min": 5,
"max": 5
},
"59e690b686f7746c9f75e848": {
"min": 10,
"max": 25
},
"5449016a4bdc2d6f028b456f": {
"min": 5000,
"max": 50000
},
"569668774bdc2da2298b4568": {
"min": 100,
"max": 500
},
"5696686a4bdc2da3298b456a": {
"min": 100,
"max": 500
},
"5d235b4d86f7742e017bc88a": {
"min": 10,
"max": 50
}
},
"armorLevelWhitelist": [0],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
"5449016a4bdc2d6f028b456f": {
"min": 5000,
"max": 50000
},
"barter": {
"icon": "Supply",
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 20,
"max": 35
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [],
"itemTypeWhitelist": [
"5d650c3e815116009f6201d2",
"57864ee62459775490116fc1",
"57864ada245977548638de91",
"57864bb7245977548b3b66c2",
"57864e4c24597754843f8723",
"57864c322459775490116fbf",
"57864a66245977548f04a81f"
],
"itemLimits": {
"5447b5cf4bdc2d65278b4567": 1,
"57864ee62459775490116fc1": 2,
"5448e8d04bdc2ddf718b4569": 3,
"5448e8d64bdc2dce718b4568": 3,
"5448bc234bdc2d3c308b4569": 3,
"5448f3a64bdc2d60728b456a": 3,
"5448e54d4bdc2dcc718b4568": 3,
"5485a8684bdc2da71d8b4567": 4,
"57864bb7245977548b3b66c2": 5,
"57864ada245977548638de91": 5,
"5d650c3e815116009f6201d2": 5,
"5645bcb74bdc2ded0b8b4578": 2,
"5448e5724bdc2ddf718b4568": 2,
"55818add4bdc2d5b648b456f": 2,
"543be6564bdc2df4348b4568": 3,
"550aa4cd4bdc2dd8348b456c": 2,
"5448f39d4bdc2d0a728b4568": 4,
"5448f3a14bdc2d27728b4569": 2,
"5447e1d04bdc2dff2f8b4567": 1,
"55818ad54bdc2ddc698b4569": 3,
"55818b164bdc2ddc698b456c": 2,
"55818ae44bdc2dde698b456c": 2,
"5448e5284bdc2dcb718b4567": 2
},
"itemStackLimits": {
"5fc382a9d724d907e2077dab": {
"min": 5,
"max": 5
},
"59e690b686f7746c9f75e848": {
"min": 10,
"max": 25
},
"5449016a4bdc2d6f028b456f": {
"min": 5000,
"max": 50000
},
"569668774bdc2da2298b4568": {
"min": 100,
"max": 500
},
"5696686a4bdc2da3298b456a": {
"min": 100,
"max": 500
},
"5d235b4d86f7742e017bc88a": {
"min": 10,
"max": 50
}
},
"armorLevelWhitelist": [0],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
"569668774bdc2da2298b4568": {
"min": 100,
"max": 500
},
"radar": {
"icon": "Supply",
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 0,
"max": 0
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [],
"itemTypeWhitelist": [],
"itemLimits": {},
"itemStackLimits": {},
"armorLevelWhitelist": [],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true,
"useForcedLoot": true,
"forcedLoot": {
"66d9f7256916142b3b02276e": { "min": 2, "max": 4 }
}
"5696686a4bdc2da3298b456a": {
"min": 100,
"max": 500
},
"toiletPaper": {
"icon": "Supply",
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 0,
"max": 0
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [],
"itemTypeWhitelist": [],
"itemLimits": {},
"itemStackLimits": {},
"armorLevelWhitelist": [],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true,
"useForcedLoot": true,
"forcedLoot": {
"5c13cef886f774072e618e82": { "min": 100, "max": 120 }
}
"5d235b4d86f7742e017bc88a": {
"min": 10,
"max": 50
}
},
"armorLevelWhitelist": [
0,
4,
5,
6
],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
},
"customAirdropMapping": {
"66da1b49099cf6adcc07a36b": "radar",
"66da1b546916142b3b022777": "radar"
"weaponArmor": {
"icon": "Weapon",
"weaponPresetCount": {
"min": 6,
"max": 8
},
"armorPresetCount": {
"min": 3,
"max": 6
},
"itemCount": {
"min": 11,
"max": 22
},
"weaponCrateCount": {
"min": 0,
"max": 2
},
"itemBlacklist": [],
"itemTypeWhitelist": [
"5485a8684bdc2da71d8b4567",
"5448e8d64bdc2dce718b4568",
"5448e8d04bdc2ddf718b4569",
"5447e1d04bdc2dff2f8b4567",
"5448e54d4bdc2dcc718b4568",
"5448e5284bdc2dcb718b4567",
"5448e53e4bdc2d60728b4567",
"55818ad54bdc2ddc698b4569",
"55818af64bdc2d5b648b4570",
"55818b0e4bdc2dde698b456e",
"5448bc234bdc2d3c308b4569",
"5645bcb74bdc2ded0b8b4578",
"5448e5724bdc2ddf718b4568",
"55818add4bdc2d5b648b456f",
"543be6564bdc2df4348b4568",
"550aa4cd4bdc2dd8348b456c",
"55818b164bdc2ddc698b456c",
"55818ae44bdc2dde698b456c"
],
"itemLimits": {
"5448e8d04bdc2ddf718b4569": 3,
"5448e8d64bdc2dce718b4568": 3,
"5448bc234bdc2d3c308b4569": 3,
"5448e54d4bdc2dcc718b4568": 3,
"5485a8684bdc2da71d8b4567": 4,
"5645bcb74bdc2ded0b8b4578": 2,
"5448e5724bdc2ddf718b4568": 2,
"55818add4bdc2d5b648b456f": 2,
"543be6564bdc2df4348b4568": 3,
"550aa4cd4bdc2dd8348b456c": 2,
"5447e1d04bdc2dff2f8b4567": 3,
"55818ad54bdc2ddc698b4569": 3,
"55818b164bdc2ddc698b456c": 2,
"55818ae44bdc2dde698b456c": 2,
"5448e5284bdc2dcb718b4567": 2
},
"itemStackLimits": {
"5fc382a9d724d907e2077dab": {
"min": 5,
"max": 5
},
"59e690b686f7746c9f75e848": {
"min": 10,
"max": 25
},
"5d235b4d86f7742e017bc88a": {
"min": 10,
"max": 50
}
},
"armorLevelWhitelist": [
0,
3,
4,
5,
6
],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
},
"foodMedical": {
"icon": "Medical",
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 25,
"max": 45
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [],
"itemTypeWhitelist": [
"543be5dd4bdc2deb348b4569",
"5448e8d64bdc2dce718b4568",
"5448e8d04bdc2ddf718b4569",
"5448f3a64bdc2d60728b456a",
"5448f3ac4bdc2dce718b4569",
"5448f39d4bdc2d0a728b4568",
"5448f3a14bdc2d27728b4569"
],
"itemLimits": {
"5447b5cf4bdc2d65278b4567": 1,
"5448e8d04bdc2ddf718b4569": 3,
"5448e8d64bdc2dce718b4568": 3,
"5448bc234bdc2d3c308b4569": 3,
"5448f3a64bdc2d60728b456a": 3,
"5448e54d4bdc2dcc718b4568": 3,
"5485a8684bdc2da71d8b4567": 4,
"57864bb7245977548b3b66c2": 2,
"57864ada245977548638de91": 3,
"5d650c3e815116009f6201d2": 2,
"5645bcb74bdc2ded0b8b4578": 2,
"5448e5724bdc2ddf718b4568": 2,
"55818add4bdc2d5b648b456f": 2,
"543be6564bdc2df4348b4568": 3,
"550aa4cd4bdc2dd8348b456c": 2,
"5448f39d4bdc2d0a728b4568": 4,
"5448f3a14bdc2d27728b4569": 2,
"5447e1d04bdc2dff2f8b4567": 1,
"55818ad54bdc2ddc698b4569": 3,
"55818b164bdc2ddc698b456c": 2,
"55818ae44bdc2dde698b456c": 2,
"5448e5284bdc2dcb718b4567": 2
},
"itemStackLimits": {
"5fc382a9d724d907e2077dab": {
"min": 5,
"max": 5
},
"59e690b686f7746c9f75e848": {
"min": 10,
"max": 25
},
"5449016a4bdc2d6f028b456f": {
"min": 5000,
"max": 50000
},
"569668774bdc2da2298b4568": {
"min": 100,
"max": 500
},
"5696686a4bdc2da3298b456a": {
"min": 100,
"max": 500
},
"5d235b4d86f7742e017bc88a": {
"min": 10,
"max": 50
}
},
"armorLevelWhitelist": [
0
],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
},
"barter": {
"icon": "Supply",
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 20,
"max": 35
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [],
"itemTypeWhitelist": [
"5d650c3e815116009f6201d2",
"57864ee62459775490116fc1",
"57864ada245977548638de91",
"57864bb7245977548b3b66c2",
"57864e4c24597754843f8723",
"57864c322459775490116fbf",
"57864a66245977548f04a81f"
],
"itemLimits": {
"5447b5cf4bdc2d65278b4567": 1,
"57864ee62459775490116fc1": 2,
"5448e8d04bdc2ddf718b4569": 3,
"5448e8d64bdc2dce718b4568": 3,
"5448bc234bdc2d3c308b4569": 3,
"5448f3a64bdc2d60728b456a": 3,
"5448e54d4bdc2dcc718b4568": 3,
"5485a8684bdc2da71d8b4567": 4,
"57864bb7245977548b3b66c2": 5,
"57864ada245977548638de91": 5,
"5d650c3e815116009f6201d2": 5,
"5645bcb74bdc2ded0b8b4578": 2,
"5448e5724bdc2ddf718b4568": 2,
"55818add4bdc2d5b648b456f": 2,
"543be6564bdc2df4348b4568": 3,
"550aa4cd4bdc2dd8348b456c": 2,
"5448f39d4bdc2d0a728b4568": 4,
"5448f3a14bdc2d27728b4569": 2,
"5447e1d04bdc2dff2f8b4567": 1,
"55818ad54bdc2ddc698b4569": 3,
"55818b164bdc2ddc698b456c": 2,
"55818ae44bdc2dde698b456c": 2,
"5448e5284bdc2dcb718b4567": 2
},
"itemStackLimits": {
"5fc382a9d724d907e2077dab": {
"min": 5,
"max": 5
},
"59e690b686f7746c9f75e848": {
"min": 10,
"max": 25
},
"5449016a4bdc2d6f028b456f": {
"min": 5000,
"max": 50000
},
"569668774bdc2da2298b4568": {
"min": 100,
"max": 500
},
"5696686a4bdc2da3298b456a": {
"min": 100,
"max": 500
},
"5d235b4d86f7742e017bc88a": {
"min": 10,
"max": 50
}
},
"armorLevelWhitelist": [
0
],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
},
"radar": {
"icon": "Supply",
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 0,
"max": 0
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [],
"itemTypeWhitelist": [],
"itemLimits": {},
"itemStackLimits": {},
"armorLevelWhitelist": [],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true,
"useForcedLoot": true,
"forcedLoot": {
"66d9f7256916142b3b02276e": {
"min": 2,
"max": 4
}
}
},
"toiletPaper": {
"icon": "Supply",
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 0,
"max": 0
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [],
"itemTypeWhitelist": [],
"itemLimits": {},
"itemStackLimits": {},
"armorLevelWhitelist": [],
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true,
"useForcedLoot": true,
"forcedLoot": {
"5c13cef886f774072e618e82": {
"min": 100,
"max": 120
}
}
}
},
"customAirdropMapping": {
"66da1b49099cf6adcc07a36b": "radar",
"66da1b546916142b3b022777": "radar"
}
}
@@ -1,9 +1,9 @@
{
"enabled": true,
"maxBackups": 15,
"directory": "./user/profiles/backups",
"backupInterval": {
"enabled": false,
"intervalMinutes": 120
}
"enabled": true,
"maxBackups": 15,
"directory": "./user/profiles/backups",
"backupInterval": {
"enabled": false,
"intervalMinutes": 120
}
}
@@ -175,7 +175,7 @@
},
"weapon": {
"highestMax": 100,
"lowestMax": 85,
"lowestMax": 85,
"maxDelta": 10,
"minDelta": 0,
"minLimitPercent": 15
@@ -225,15 +225,15 @@
},
"follower": {
"armor": {
"highestMaxPercent": 100,
"lowestMaxPercent": 90,
"highestMaxPercent": 100,
"lowestMaxPercent": 90,
"maxDelta": 10,
"minDelta": 0,
"minLimitPercent": 15
},
"weapon": {
"highestMax": 100,
"lowestMax": 85,
"lowestMax": 85,
"maxDelta": 40,
"minDelta": 20,
"minLimitPercent": 15
@@ -436,27 +436,7 @@
"weaponModLimits": {
"lightLaserLimit": 2,
"scopeLimit": 1
},
"weightingAdjustmentsByPlayerLevel": [
{
"equipment": {
"add": {},
"edit": {
"FaceCover": {
"572b7fa524597762b747ce82": 30
},
"FirstPrimaryWeapon": {
"54491c4f4bdc2db1078b4568": 90,
"5a38e6bac4a2826c6e06d79b": 90
}
}
},
"levelRange": {
"max": 6,
"min": 1
}
}
]
}
},
"assaultgroup": {},
"bossboar": {
@@ -2418,7 +2398,8 @@
"60339954d62c9b14ed777c06": 1,
"60db29ce99594040e04c4a27": 0,
"61f7c9e189e6fb1a5e3ea78d": 0,
"65290f395ae2ae97b80fdf2d": 10
"65290f395ae2ae97b80fdf2d": 10,
"67d0576f29f580ebc10efd08": 1
},
"Headwear": {
"5aa7e276e5b5b000171d0647": 50,
@@ -2733,61 +2714,61 @@
"playerScavBrainType": {
"bigmap": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
},
"factory4_day": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
},
"factory4_night": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
},
"interchange": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
},
"laboratory": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
},
"lighthouse": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
},
"rezervbase": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
},
"sandbox": {
"assault": 2,
"pmcBot": 1
"assault": 1,
"pmcBot": 0
},
"sandbox_high": {
"assault": 2,
"pmcBot": 1
"pmcBot": 0
},
"shoreline": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
},
"tarkovstreets": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
},
"woods": {
"assault": 1,
"bossKilla": 1,
"pmcBot": 1
"bossKilla": 0,
"pmcBot": 0
}
},
"presetBatch": {
@@ -2853,45 +2834,6 @@
"tagillaHelperAgro": 5,
"test": 30
},
"revenge": {
"arenaFighter": [
"pmcBot",
"gifter"
],
"arenaFighterEvent": [
"pmcBot",
"gifter"
],
"bossKnight": [
"exUsec",
"gifter",
"bossKnight",
"followerBigPipe",
"followerBirdEye"
],
"exUsec": [
"exUsec",
"gifter",
"bossKnight",
"followerBigPipe",
"followerBirdEye"
],
"followerBigPipe": [
"exUsec",
"gifter",
"bossKnight",
"followerBigPipe",
"followerBirdEye"
],
"pmcBot": [
"pmcBot",
"gifter"
],
"spiritWinter": [
"pmcBot",
"gifter"
]
},
"secureContainerAmmoStackCount": 20,
"showTypeInNickname": false,
"walletLoot": {
@@ -2918,17 +2860,17 @@
]
},
"weeklyBoss": {
"enabled": true,
"bossPool": [
"bossBully",
"bossTagilla",
"bossGluhar",
"bossKilla",
"bossKojaniy",
"bossSanitar",
"bossKolontay",
"bossKnight"
],
"resetDay": "Monday"
"enabled": true,
"bossPool": [
"bossBully",
"bossTagilla",
"bossGluhar",
"bossKilla",
"bossKojaniy",
"bossSanitar",
"bossKolontay",
"bossKnight"
],
"resetDay": "Monday"
}
}
@@ -1,4 +1,4 @@
{
"returnTimeOverrideSeconds": 0,
"runIntervalSeconds": 30
"returnTimeOverrideSeconds": 0,
"runIntervalSeconds": 30
}
@@ -1,198 +1,203 @@
{
"sptVersion": "4.0.0",
"projectName": "SPT",
"compatibleTarkovVersion": "0.16.0.37759",
"serverName": "SPT Server",
"profileSaveIntervalSeconds": 15,
"sptFriendNickname": "SPT",
"allowProfileWipe": true,
"bsgLogging": {
"verbosity": 6,
"sendToServer": false
},
"release": {
"betaDisclaimerTimeoutDelay": 30
},
"fixes": {
"fixShotgunDispersion": true,
"removeModItemsFromProfile": false,
"removeInvalidTradersFromProfile": false,
"fixProfileBreakingInventoryItemIssues": false
"sptVersion": "4.0.0",
"projectName": "SPT",
"compatibleTarkovVersion": "0.16.0.38114",
"serverName": "SPT Server",
"profileSaveIntervalSeconds": 15,
"sptFriendNickname": "SPT",
"allowProfileWipe": true,
"bsgLogging": {
"verbosity": 6,
"sendToServer": false
},
"release": {
"betaDisclaimerTimeoutDelay": 30
},
"fixes": {
"fixShotgunDispersion": true,
"removeModItemsFromProfile": false,
"removeInvalidTradersFromProfile": false,
"fixProfileBreakingInventoryItemIssues": false
},
"survey": {
"locale": {
"en": {
"question_1": "An update to a popular mod that makes the game more realistic has been released, which of the following actions on discord will you do?",
"question_1_answer_1": "Ignore the changelog",
"question_1_answer_2": "Ignore the readme",
"question_1_answer_3": "Ask in general chat why the guns don't shoot",
"question_1_answer_4": "Argue with general chat when they tell you to read the readme",
"question_1_answer_5": "Install as many mods as you can at the same time and get mad when everything breaks",
"question_1_answer_6": "Inform general chat of your displeasure and get mad when they laugh at you",
"question_1_answer_7": "Tag staff to inform them of your displeasure of a mod you don't like being released",
"question_1_answer_8": "DM the author informing them of your displeasure at their mods existence",
"question_1_answer_9": "DM the author and inform them you are going to sue them",
"question_1_answer_10": "Stalk the author and create dozens of hub accounts to message them",
"question_2": "You want to download an older version of SPT but you have been informed old versions cannot be downloaded, what do you do?",
"question_2_answer_1": "Get mad",
"question_2_answer_2": "Get REAL mad and voice your opinion in every possible chat you can",
"question_2_answer_3": "Travel around various discords informing anyone who listens what bad people SPT are",
"question_2_answer_4": "Create dozens of alt accounts to DM staff and inform them of your displeasure",
"question_2_answer_5": "Ask when the old SPT version is coming back every day for weeks",
"title": "Feedback survey",
"time": "About 1 minute",
"description": "This was the second SPT survey, what a valuable use of 20 minutes that was.",
"farewell": "You knew the first survey didn't do anything yet you still submitted the second one, you're quite an odd one."
}
},
"survey": {
"locale": {
"en": {
"question_1": "An update to a popular mod that makes the game more realistic has been released, which of the following actions on discord will you do?",
"question_1_answer_1": "Ignore the changelog",
"question_1_answer_2": "Ignore the readme",
"question_1_answer_3": "Ask in general chat why the guns dont shoot",
"question_1_answer_4": "Argue with general chat when they tell you to read the readme",
"question_1_answer_5": "Install as many mods as you can at the same time and get mad when everything breaks",
"question_1_answer_6": "Inform general chat of your displeasure and get mad when they laugh at you",
"question_1_answer_7": "Tag staff to inform them of your displeasure of a mod you don't like being released",
"question_1_answer_8": "DM the author informing them of your displeasure at their mods existence",
"question_1_answer_9": "DM the author and inform them you are going to sue them",
"question_1_answer_10": "Stalk the author and create dozens of hub accounts to message them",
"question_2": "You want to download an older version of SPT but you have been informed old versions cannot be downloaded, what do you do?",
"question_2_answer_1": "Get mad",
"question_2_answer_2": "Get REAL mad and voice your opinion in every possible chat you can",
"question_2_answer_3": "Travel around various discords informing anyone who listens what bad people SPT are",
"question_2_answer_4": "Create dozens of alt accounts to DM staff and inform them of your displeasure",
"question_2_answer_5": "Ask when the old SPT verison is coming back every day for weeks",
"title": "Feedback survey",
"time": "About 1 minute",
"description": "This was the second SPT survey, what a valuable use of 20 minutes that was.",
"farewell": "You knew the first survey didnt do anything yet you still submitted the second one, you're quite an odd one."
"id": 1,
"welcomePageData": {
"titleLocaleKey": "title",
"timeLocaleKey": "time",
"descriptionLocaleKey": "description"
},
"farewellPageData": {
"textLocaleKey": "farewell"
},
"pages": [
[
0,
1
]
],
"questions": [
{
"id": 0,
"sortIndex": 1,
"titleLocaleKey": "question_1",
"hintLocaleKey": "",
"answerLimit": 10,
"answerType": "MultiOption",
"answers": [
{
"id": 0,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_1"
},
{
"id": 1,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_2"
},
{
"id": 2,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_3"
},
{
"id": 3,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_4"
},
{
"id": 4,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_5"
},
{
"id": 5,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_6"
},
{
"id": 6,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_7"
},
{
"id": 7,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_8"
},
{
"id": 8,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_9"
},
{
"id": 9,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_10"
}
]
},
"survey": {
"id": 1,
"welcomePageData": {
"titleLocaleKey": "title",
"timeLocaleKey": "time",
"descriptionLocaleKey": "description"
{
"id": 1,
"sortIndex": 1,
"titleLocaleKey": "question_2",
"hintLocaleKey": "",
"answerLimit": 5,
"answerType": "SingleOption",
"answers": [
{
"id": 0,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_1"
},
"farewellPageData": {
"textLocaleKey": "farewell"
{
"id": 1,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_2"
},
"pages": [[0, 1]],
"questions": [
{
"id": 0,
"sortIndex": 1,
"titleLocaleKey": "question_1",
"hintLocaleKey": "",
"answerLimit": 10,
"answerType": "MultiOption",
"answers": [
{
"id": 0,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_1"
},
{
"id": 1,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_2"
},
{
"id": 2,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_3"
},
{
"id": 3,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_4"
},
{
"id": 4,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_5"
},
{
"id": 5,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_6"
},
{
"id": 6,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_7"
},
{
"id": 7,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_8"
},
{
"id": 8,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_9"
},
{
"id": 9,
"questionId": 0,
"sortIndex": 1,
"localeKey": "question_1_answer_10"
}
]
},
{
"id": 1,
"sortIndex": 1,
"titleLocaleKey": "question_2",
"hintLocaleKey": "",
"answerLimit": 5,
"answerType": "SingleOption",
"answers": [
{
"id": 0,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_1"
},
{
"id": 1,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_2"
},
{
"id": 2,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_3"
},
{
"id": 3,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_4"
},
{
"id": 4,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_5"
}
]
}
],
"isNew": false
{
"id": 2,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_3"
},
{
"id": 3,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_4"
},
{
"id": 4,
"questionId": 1,
"sortIndex": 1,
"localeKey": "question_2_answer_5"
}
]
}
],
"isNew": false
}
},
"features": {
"compressProfile": false,
"chatbotFeatures": {
"sptFriendGiftsEnabled": true,
"commandoFeatures": {
"giveCommandEnabled": true
},
"commandUseLimits": {
"StashRows": 29
},
"ids": {
"commando": "6723fd51c5924c57ce0ca01e",
"spt": "6723fd51c5924c57ce0ca01f"
},
"enabledBots": {
"6723fd51c5924c57ce0ca01e": true,
"6723fd51c5924c57ce0ca01f": true
}
},
"features": {
"compressProfile": false,
"chatbotFeatures": {
"sptFriendGiftsEnabled": true,
"commandoFeatures": {
"giveCommandEnabled": true
},
"commandUseLimits": {
"StashRows": 15
},
"ids": {
"commando": "6723fd51c5924c57ce0ca01e",
"spt": "6723fd51c5924c57ce0ca01f"
},
"enabledBots": {
"6723fd51c5924c57ce0ca01e": true,
"6723fd51c5924c57ce0ca01f": true
}
},
"createNewProfileTypesBlacklist": [],
"achievementProfileIdBlacklist": []
},
"customWatermarkLocaleKeys": []
"createNewProfileTypesBlacklist": [],
"achievementProfileIdBlacklist": []
},
"customWatermarkLocaleKeys": []
}
File diff suppressed because it is too large Load Diff
@@ -1,10 +1,8 @@
{
"healthMultipliers": {
"death": 0.3,
"blacked": 0.1
},
"save": {
"health": true,
"effects": true
}
"healthMultipliers": {
"blacked": 0.1
},
"save": {
"health": true
}
}
File diff suppressed because it is too large Load Diff
@@ -1,10 +1,8 @@
{
"ip": "127.0.0.1",
"port": 6969,
"backendIp": "127.0.0.1",
"backendPort": 6969,
"webSocketPingDelayMs": 90000,
"logRequests": true,
"serverImagePathOverride": {},
"certificatePassword": ""
"ip": "127.0.0.1",
"port": 6969,
"backendIp": "127.0.0.1",
"backendPort": 6969,
"logRequests": true,
"serverImagePathOverride": {}
}
@@ -1,32 +1,36 @@
{
"raidMenuSettings": {
"aiAmount": "AsOnline",
"aiDifficulty": "AsOnline",
"bossEnabled": true,
"scavWars": false,
"taggedAndCursed": false,
"enablePve": true,
"randomWeather": false,
"randomTime": false
},
"save": {
"loot": true
},
"carExtracts": ["Dorms V-Ex", "PP Exfil", "V-Ex_light", "South V-Ex", "E7_car", "Sandbox_VExit", "Shorl_V-Ex"],
"coopExtracts": [
"Interchange Cooperation",
"tunnel_shared",
"EXFIL_ScavCooperation",
"Factory Gate",
"Exit_E10_coop",
"Smugglers_Trail_coop",
"Scav_coop_exit"
],
"carExtractBaseStandingGain": 0.2,
"coopExtractBaseStandingGain": 0.25,
"scavExtractStandingGain": 0.01,
"pmcKillProbabilityForScavGain": 0.2,
"keepFiRSecureContainerOnDeath": false,
"alwaysKeepFoundInRaidOnRaidEnd": false,
"playerScavHostileChancePercent": 15
"raidMenuSettings": {
"aiAmount": "AsOnline",
"aiDifficulty": "AsOnline",
"bossEnabled": true,
"scavWars": false,
"taggedAndCursed": false,
"enablePve": true,
"randomWeather": false,
"randomTime": false
},
"carExtracts": [
"Dorms V-Ex",
"PP Exfil",
"V-Ex_light",
"South V-Ex",
"E7_car",
"Sandbox_VExit",
"Shorl_V-Ex"
],
"coopExtracts": [
"Interchange Cooperation",
"tunnel_shared",
"EXFIL_ScavCooperation",
"Factory Gate",
"Exit_E10_coop",
"Smugglers_Trail_coop",
"Scav_coop_exit"
],
"carExtractBaseStandingGain": 0.2,
"coopExtractBaseStandingGain": 0.25,
"scavExtractStandingGain": 0.01,
"keepFiRSecureContainerOnDeath": false,
"alwaysKeepFoundInRaidOnRaidEnd": false,
"playerScavHostileChancePercent": 15
}
@@ -1,14 +1,12 @@
{
"returnChancePercent": {
"54cb50c76803fa8b248b4571": 85,
"54cb57776803fa99248b456e": 95
},
"blacklistedEquipment": ["SpecialSlot1", "SpecialSlot2", "SpecialSlot3"],
"slotIdsToAlwaysRemove": ["cartridges", "patron_in_weapon"],
"returnTimeOverrideSeconds": 0,
"storageTimeOverrideSeconds": 0,
"runIntervalSeconds": 600,
"minAttachmentRoublePriceToBeTaken": 15000,
"chanceNoAttachmentsTakenPercent": 10,
"simulateItemsBeingTaken": true
"returnChancePercent": {
"54cb50c76803fa8b248b4571": 85,
"54cb57776803fa99248b456e": 95
},
"returnTimeOverrideSeconds": 0,
"storageTimeOverrideSeconds": 0,
"runIntervalSeconds": 600,
"minAttachmentRoublePriceToBeTaken": 15000,
"chanceNoAttachmentsTakenPercent": 10,
"simulateItemsBeingTaken": true
}
File diff suppressed because it is too large Load Diff
@@ -39,7 +39,6 @@
"5cffa483d7ad1a049e54ef1c",
"5f647fd3f6e4ab66c82faed6",
"5671446a4bdc2d97058b4569",
"57518f7724597720a31c09ab",
"61a4cda622af7f4f6a3ce617",
"6087e570b998180e9f76dc24",
"5efdafc1e70b5e33f86de058",
@@ -58,7 +57,11 @@
"57518fd424597720c85dbaaa",
"5a043f2c86f7741aa57b5145",
"5a0448bc86f774736f14efa8",
"67ade494d748873e5f0161df"
"67ade494d748873e5f0161df",
"679baa2c61f588ae2b062a24",
"679baa4f59b8961f370dd683",
"679baa5a59b8961f370dd685",
"679baa9091966fe40408f149"
],
"bossItems": [
"6275303a9f372d6ea97f9ec7",
@@ -552,7 +555,6 @@
"671d8b8c0959c721a50ca838",
"660bc341c38b837877075e4c",
"67409848d0b2f8eb9b034db9",
"67449b6c89d5e1ddc603f504",
"675aab0d6b6addc02a08f097",
"675aaae1dcf102478202c537",
"675aaa9a3107dac100063331",
@@ -576,7 +578,11 @@
"67408903268737ef6908d432",
"660ea4ba5a58d057b009efab",
"660312cc4d6cdfa6f500c703",
"679ba90d269ddfea47012159"
"679ba90d269ddfea47012159",
"684180bc51bf8645f7067bc8",
"68418091b5b0c9e4c60f0e7a",
"684180ee9b6d80d840042e8a",
"684181208d035f60230f63f9"
],
"rewardItemTypeBlacklist": [
"65649eb40bf0ed77b8044453"
@@ -1,39 +1,39 @@
{
"gameLocale": "system",
"serverLocale": "system",
"serverSupportedLocales": [
"ar",
"en",
"cs",
"da",
"de",
"el",
"es-es",
"fr",
"nl",
"no",
"tr",
"hi",
"hu",
"id",
"it",
"ja",
"ko",
"nl",
"no",
"pl",
"pt-br",
"pt-pt",
"ru",
"sv",
"vi",
"uk",
"zh-cn"
],
"fallbacks": {
"en-*": "en",
"pt-*": "pt-pt",
"zh-*": "zh-cn",
"es-*": "es-es"
}
"gameLocale": "system",
"serverLocale": "system",
"serverSupportedLocales": [
"ar",
"en",
"cs",
"da",
"de",
"el",
"es-es",
"fr",
"nl",
"no",
"tr",
"hi",
"hu",
"id",
"it",
"ja",
"ko",
"nl",
"no",
"pl",
"pt-br",
"pt-pt",
"ru",
"sv",
"vi",
"uk",
"zh-cn"
],
"fallbacks": {
"en-*": "en",
"pt-*": "pt-pt",
"zh-*": "zh-cn",
"es-*": "es-es"
}
}
File diff suppressed because it is too large Load Diff
@@ -1,12 +1,12 @@
{
"looseLoot": {
"woods": [],
"bigmap": [],
"laboratory": []
},
"looseLootSpawnPointAdjustments": {
"bigmap": {},
"rezervbase": {},
"tarkovstreets": {}
}
"looseLoot": {
"woods": [],
"bigmap": [],
"laboratory": []
},
"looseLootSpawnPointAdjustments": {
"bigmap": {},
"rezervbase": {},
"tarkovstreets": {}
}
}
@@ -1,21 +1,21 @@
{
"equipment": {
"ArmBand": false,
"Compass": false,
"Headwear": true,
"Earpiece": true,
"FaceCover": true,
"ArmorVest": true,
"Eyewear": true,
"TacticalVest": true,
"PocketItems": true,
"Backpack": true,
"Holster": true,
"FirstPrimaryWeapon": true,
"SecondPrimaryWeapon": true,
"Scabbard": false,
"SecuredContainer": false
},
"questItems": true,
"specialSlotItems": false
"equipment": {
"ArmBand": false,
"Compass": false,
"Headwear": true,
"Earpiece": true,
"FaceCover": true,
"ArmorVest": true,
"Eyewear": true,
"TacticalVest": true,
"PocketItems": true,
"Backpack": true,
"Holster": true,
"FirstPrimaryWeapon": true,
"SecondPrimaryWeapon": true,
"Scabbard": false,
"SecuredContainer": false
},
"questItems": true,
"specialSlotItems": false
}
@@ -1,15 +1,3 @@
{
"enabled": false,
"randomiseMapContainers": {
"tarkovstreets": false,
"factory4_day": false,
"factory4_night": false,
"bigmap": false,
"woods": false,
"shoreline": false,
"interchange": false,
"lighthouse": false,
"laboratory": false,
"rezervbase": false
}
"enabled": false
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -1,25 +1,25 @@
{
"victim": {
"responseChancePercent": 7,
"responseTypeWeights": {
"positive": 7,
"negative": 2,
"plead": 2
},
"stripCapitalisationChancePercent": 20,
"allCapsChancePercent": 20,
"appendBroToMessageEndChancePercent": 35
"victim": {
"responseChancePercent": 7,
"responseTypeWeights": {
"positive": 7,
"negative": 2,
"plead": 2
},
"killer": {
"responseChancePercent": 16,
"responseTypeWeights": {
"positive": 5,
"negative": 2,
"plead": 2,
"pity": 1
},
"stripCapitalisationChancePercent": 20,
"allCapsChancePercent": 15,
"appendBroToMessageEndChancePercent": 15
}
"stripCapitalisationChancePercent": 20,
"allCapsChancePercent": 20,
"appendBroToMessageEndChancePercent": 35
},
"killer": {
"responseChancePercent": 16,
"responseTypeWeights": {
"positive": 5,
"negative": 2,
"plead": 2,
"pity": 1
},
"stripCapitalisationChancePercent": 20,
"allCapsChancePercent": 15,
"appendBroToMessageEndChancePercent": 15
}
}
File diff suppressed because it is too large Load Diff
@@ -1,6 +1,5 @@
{
"dynamic": {
"_currencies": "what percentage of the offers are in each currency",
"armor": {
"plateSlotIdToRemovePool": [
"front_plate",
@@ -39,7 +38,7 @@
"5737250c2459776125652acc",
"657023a9126cc4a57d0e17a6",
"5c1127d0d174af29be75cf68"
],
],
"customItemCategoryList": [],
"damagedAmmoPacks": true,
"enableBsgList": true,
@@ -229,7 +228,7 @@
}
}
},
"currencies": {
"offerCurrencyChancePercent": {
"5449016a4bdc2d6f028b456f": 78,
"5696686a4bdc2da3298b456a": 14,
"569668774bdc2da2298b4568": 8
@@ -261,20 +260,20 @@
},
"offerAdjustment": {
"adjustPriceWhenBelowHandbookPrice": false,
"handbookPriceMultipier": 1.1,
"handbookPriceMultiplier": 1.1,
"maxPriceDifferenceBelowHandbookPercent": 64,
"priceThreshholdRub": 20000
"priceThresholdRub": 20000
},
"offerItemCount": {
"default": {
"max": 30,
"min": 7
},
"543be5cb4bdc2deb348b4568": {
"max": 3,
"min": 0
}
},
"default": {
"max": 30,
"min": 7
},
"543be5cb4bdc2deb348b4568": {
"max": 3,
"min": 0
}
},
"pack": {
"chancePercent": 0.5,
"itemCountMax": 17,
@@ -323,7 +322,7 @@
"57bef4c42459772e8d35a53b",
"55802f4a4bdc2ddb688b4569",
"616eb7aea207f41933308f46",
"543be5cb4bdc2deb348b4568"
"543be5cb4bdc2deb348b4568"
],
"showDefaultPresetsOnly": true,
"stackablePercent": {
@@ -1,186 +1,185 @@
{
"priceMultiplier": 1,
"applyRandomizeDurabilityLoss": true,
"weaponSkillRepairGain": 4.06,
"armorKitSkillPointGainPerRepairPointMultiplier": 0.05,
"repairKitIntellectGainMultiplier": {
"weapon": 0.045,
"armor": 0.03
},
"maxIntellectGainPerRepair": {
"kit": 0.6,
"trader": 0.6
},
"weaponTreatment": {
"critSuccessChance": 0.1,
"critSuccessAmount": 4,
"critFailureChance": 0.1,
"critFailureAmount": 4,
"pointGainMultiplier": 0.6
},
"repairKit": {
"armor": {
"rarityWeight": {
"Common": 5,
"Rare": 1
},
"bonusTypeWeight": {
"DamageReduction": 1
},
"Common": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.9,
"max": 0.98
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
},
"Rare": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.8,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
}
},
"vest": {
"rarityWeight": {
"Common": 5,
"Rare": 1
},
"bonusTypeWeight": {
"DamageReduction": 1
},
"Common": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.9,
"max": 0.98
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
},
"Rare": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.8,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
}
},
"headwear": {
"rarityWeight": {
"Common": 5,
"Rare": 1
},
"bonusTypeWeight": {
"DamageReduction": 1
},
"Common": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.9,
"max": 0.98
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
},
"Rare": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.8,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
}
},
"weapon": {
"rarityWeight": {
"Common": 5,
"Rare": 1
},
"bonusTypeWeight": {
"WeaponSpread": 1,
"MalfunctionProtections": 1
},
"Common": {
"WeaponSpread": {
"valuesMinMax": {
"min": 0.9,
"max": 0.99
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
},
"MalfunctionProtections": {
"valuesMinMax": {
"min": 0.94,
"max": 0.96
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
},
"Rare": {
"WeaponSpread": {
"valuesMinMax": {
"min": 0.8,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
},
"MalfunctionProtections": {
"valuesMinMax": {
"min": 0.75,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
},
"WeaponDamage": {
"valuesMinMax": {
"min": 0.3,
"max": 0.6
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
}
"priceMultiplier": 1,
"applyRandomizeDurabilityLoss": true,
"armorKitSkillPointGainPerRepairPointMultiplier": 0.05,
"repairKitIntellectGainMultiplier": {
"weapon": 0.045,
"armor": 0.03
},
"maxIntellectGainPerRepair": {
"kit": 0.6,
"trader": 0.6
},
"weaponTreatment": {
"critSuccessChance": 0.1,
"critSuccessAmount": 4,
"critFailureChance": 0.1,
"critFailureAmount": 4,
"pointGainMultiplier": 0.6
},
"repairKit": {
"armor": {
"rarityWeight": {
"Common": 5,
"Rare": 1
},
"bonusTypeWeight": {
"DamageReduction": 1
},
"Common": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.9,
"max": 0.98
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
},
"Rare": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.8,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
}
},
"vest": {
"rarityWeight": {
"Common": 5,
"Rare": 1
},
"bonusTypeWeight": {
"DamageReduction": 1
},
"Common": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.9,
"max": 0.98
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
},
"Rare": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.8,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
}
},
"headwear": {
"rarityWeight": {
"Common": 5,
"Rare": 1
},
"bonusTypeWeight": {
"DamageReduction": 1
},
"Common": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.9,
"max": 0.98
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
},
"Rare": {
"DamageReduction": {
"valuesMinMax": {
"min": 0.8,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
}
},
"weapon": {
"rarityWeight": {
"Common": 5,
"Rare": 1
},
"bonusTypeWeight": {
"WeaponSpread": 1,
"MalfunctionProtections": 1
},
"Common": {
"WeaponSpread": {
"valuesMinMax": {
"min": 0.9,
"max": 0.99
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
},
"MalfunctionProtections": {
"valuesMinMax": {
"min": 0.94,
"max": 0.96
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
},
"Rare": {
"WeaponSpread": {
"valuesMinMax": {
"min": 0.8,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
},
"MalfunctionProtections": {
"valuesMinMax": {
"min": 0.75,
"max": 0.9
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
},
"WeaponDamage": {
"valuesMinMax": {
"min": 0.3,
"max": 0.6
},
"activeDurabilityPercentMinMax": {
"min": 75,
"max": 90
}
}
}
}
}
}
@@ -1,111 +1,113 @@
{
"rewardItemValueRangeRub": {
"common": {
"min": 100,
"max": 10000
},
"rare": {
"min": 1001,
"max": 100000
},
"superrare": {
"min": 10001,
"max": 1200000
}
"rewardItemValueRangeRub": {
"common": {
"min": 100,
"max": 10000
},
"rewardItemParentBlacklist": [
"5485a8684bdc2da71d8b4567",
"543be5dd4bdc2deb348b4569",
"55802f4a4bdc2ddb688b4569",
"5448bf274bdc2dfc2f8b456a",
"5d52cc5ba4b9367408500062",
"62f109593b54472778797866",
"65649eb40bf0ed77b8044453"
],
"rewardItemBlacklist": [],
"moneyRewards": {
"moneyRewardChancePercent": 5,
"rubCount": {
"common": {
"min": 2000,
"max": 20000
},
"rare": {
"min": 10000,
"max": 40000
},
"superrare": {
"min": 50000,
"max": 200000
}
},
"usdCount": {
"common": {
"min": 100,
"max": 400
},
"rare": {
"min": 400,
"max": 900
},
"superrare": {
"min": 900,
"max": 2000
}
},
"eurCount": {
"common": {
"min": 100,
"max": 400
},
"rare": {
"min": 400,
"max": 900
},
"superrare": {
"min": 900,
"max": 2000
}
},
"gpCount": {
"common": {
"min": 1,
"max": 2
},
"rare": {
"min": 2,
"max": 5
},
"superrare": {
"min": 5,
"max": 15
}
}
"rare": {
"min": 1001,
"max": 100000
},
"ammoRewards": {
"ammoRewardChancePercent": 10,
"minStackSize": 10,
"ammoRewardBlacklist": {
"common": ["59e690b686f7746c9f75e848"],
"rare": [],
"superrare": []
},
"ammoRewardValueRangeRub": {
"common": {
"min": 1,
"max": 50
},
"rare": {
"min": 35,
"max": 350
},
"superrare": {
"min": 250,
"max": 50000
}
}
"superrare": {
"min": 10001,
"max": 1200000
}
},
"rewardItemParentBlacklist": [
"5485a8684bdc2da71d8b4567",
"543be5dd4bdc2deb348b4569",
"55802f4a4bdc2ddb688b4569",
"5448bf274bdc2dfc2f8b456a",
"5d52cc5ba4b9367408500062",
"62f109593b54472778797866",
"65649eb40bf0ed77b8044453"
],
"rewardItemBlacklist": [],
"moneyRewards": {
"moneyRewardChancePercent": 5,
"rubCount": {
"common": {
"min": 2000,
"max": 20000
},
"rare": {
"min": 10000,
"max": 40000
},
"superrare": {
"min": 50000,
"max": 200000
}
},
"allowMultipleMoneyRewardsPerRarity": false,
"allowMultipleAmmoRewardsPerRarity": true,
"allowBossItemsAsRewards": false
"usdCount": {
"common": {
"min": 100,
"max": 400
},
"rare": {
"min": 400,
"max": 900
},
"superrare": {
"min": 900,
"max": 2000
}
},
"eurCount": {
"common": {
"min": 100,
"max": 400
},
"rare": {
"min": 400,
"max": 900
},
"superrare": {
"min": 900,
"max": 2000
}
},
"gpCount": {
"common": {
"min": 1,
"max": 2
},
"rare": {
"min": 2,
"max": 5
},
"superrare": {
"min": 5,
"max": 15
}
}
},
"ammoRewards": {
"ammoRewardChancePercent": 10,
"minStackSize": 10,
"ammoRewardBlacklist": {
"common": [
"59e690b686f7746c9f75e848"
],
"rare": [],
"superrare": []
},
"ammoRewardValueRangeRub": {
"common": {
"min": 1,
"max": 50
},
"rare": {
"min": 35,
"max": 350
},
"superrare": {
"min": 250,
"max": 50000
}
}
},
"allowMultipleMoneyRewardsPerRarity": false,
"allowMultipleAmmoRewardsPerRarity": true,
"allowBossItemsAsRewards": false
}
@@ -9696,7 +9696,6 @@
"Shoreline": 5,
"Interchange": 5,
"RezervBase": 5,
"laboratory": 5,
"Lighthouse": 5,
"TarkovStreets": 5
}
@@ -1,451 +1,455 @@
{
"updateTime": [
{
"_name": "prapor",
"traderId": "54cb50c76803fa8b248b4571",
"seconds": {
"min": 7000,
"max": 13500
}
},
{
"_name": "therapist",
"traderId": "54cb57776803fa99248b456e",
"seconds": {
"min": 3000,
"max": 9500
}
},
{
"_name": "fence",
"traderId": "579dc571d53a0658a154fbec",
"seconds": {
"min": 3000,
"max": 9000
}
},
{
"_name": "skier",
"traderId": "58330581ace78e27b8b10cee",
"seconds": {
"min": 5000,
"max": 9000
}
},
{
"_name": "peacekeeper",
"traderId": "5935c25fb3acc3127c3d8cd9",
"seconds": {
"min": 2000,
"max": 15000
}
},
{
"_name": "mechanic",
"traderId": "5a7c2eca46aef81a7ca2145d",
"seconds": {
"min": 6500,
"max": 13500
}
},
{
"_name": "ragman",
"traderId": "5ac3b934156ae10c4430e83c",
"seconds": {
"min": 6500,
"max": 15000
}
},
{
"_name": "jaeger",
"traderId": "5c0647fdd443bc2504c2d371",
"seconds": {
"min": 2000,
"max": 5500
}
},
{
"_name": "btr",
"traderId": "656f0f98d80a697f855d34b1",
"seconds": {
"min": 3000,
"max": 7500
}
},
{
"_name": "Ref",
"traderId": "6617beeaa9cfa777ca915b7c",
"seconds": {
"min": 3000,
"max": 7500
}
}
],
"updateTimeDefault": 3600,
"tradersResetFromServerStart": true,
"purchasesAreFoundInRaid": false,
"traderPriceMultipler": 1,
"fence": {
"discountOptions": {
"assortSize": 45,
"itemPriceMult": 0.8,
"presetPriceMult": 1.15,
"weaponPresetMinMax": {
"min": 5,
"max": 12
},
"equipmentPresetMinMax": {
"min": 5,
"max": 12
}
},
"partialRefreshTimeSeconds": 240,
"partialRefreshChangePercent": 15,
"assortSize": 120,
"weaponPresetMinMax": {
"min": 12,
"max": 19
},
"equipmentPresetMinMax": {
"min": 8,
"max": 15
},
"itemPriceMult": 1.3,
"presetPriceMult": 1.3,
"regenerateAssortsOnRefresh": false,
"itemTypeLimits": {
"5448eb774bdc2d0a728b4567": 10,
"5c518ec986f7743b68682ce2": 3,
"5c518ed586f774119a772aee": 0,
"5448bc234bdc2d3c308b4569": 16,
"55802f4a4bdc2ddb688b4569": 3,
"644120aa86ffbe10ee032b6f": 3,
"5c99f98d86f7745c314214b3": 2,
"5447b5cf4bdc2d65278b4567": 4,
"55818a104bdc2db9688b4569": 1,
"55818a304bdc2db5418b457d": 1,
"5448fe394bdc2d0d028b456c": 0,
"55818a594bdc2db9688b456a": 0,
"55818a604bdc2db5418b457e": 0,
"55818a684bdc2ddd698b456d": 1,
"55818a6f4bdc2db9688b456b": 1,
"55818ac54bdc2d5b648b456e": 1,
"55818acf4bdc2dde698b456b": 0,
"55818ad54bdc2ddc698b4569": 0,
"55818add4bdc2d5b648b456f": 0,
"55818ae44bdc2dde698b456c": 0,
"55818aeb4bdc2ddc698b456a": 0,
"55818af64bdc2d5b648b4570": 0,
"55818afb4bdc2dde698b456d": 1,
"55818b014bdc2ddc698b456b": 1,
"55818b084bdc2d5b648b4571": 1,
"55818b0e4bdc2dde698b456e": 0,
"55818b164bdc2ddc698b456c": 0,
"55818b1d4bdc2d5b648b4572": 1,
"55818b224bdc2dde698b456f": 1,
"550aa4cd4bdc2dd8348b456c": 0,
"550aa4dd4bdc2dc9348b4569": 1,
"5a74651486f7744e73386dd1": 0,
"5a2c3a9486f774688b05e574": 0,
"56ea9461d2720b67698b456f": 0,
"5448f3a64bdc2d60728b456a": 0,
"5a341c4686f77469e155819e": 7,
"5485a8684bdc2da71d8b4567": 23,
"5f4fbaaca5573a5ac31db429": 0,
"5447e0e74bdc2d3c308b4567": 4,
"57bef4c42459772e8d35a53b": 2,
"5b3f15d486f77432d0509248": 3,
"543be6564bdc2df4348b4568": 0,
"5448ecbe4bdc2d60728b4568": 0,
"5671435f4bdc2d96058b4569": 0,
"543be5cb4bdc2deb348b4568": 5,
"5448e53e4bdc2d60728b4567": 7
},
"preventDuplicateOffersOfCategory": [
"543be5cb4bdc2deb348b4568",
"57bef4c42459772e8d35a53b",
"5485a8684bdc2da71d8b4567",
"5448f3ac4bdc2dce718b4569",
"5448f39d4bdc2d0a728b4568",
"5448f3a14bdc2d27728b4569",
"5448bc234bdc2d3c308b4569",
"543be5e94bdc2df1348b4568",
"5448eb774bdc2d0a728b4567",
"5447e1d04bdc2dff2f8b4567",
"5448e53e4bdc2d60728b4567",
"5448ecbe4bdc2d60728b4568",
"543be6674bdc2df1348b4569",
"5448fe124bdc2da5018b4567",
"567849dd4bdc2d150f8b456e",
"5a341c4686f77469e155819e",
"5448e5284bdc2dcb718b4567",
"5447e0e74bdc2d3c308b4567",
"5b3f15d486f77432d0509248",
"5645bcb74bdc2ded0b8b4578",
"5795f317245977243854e041"
],
"weaponDurabilityPercentMinMax": {
"current": {
"min": 40,
"max": 100
},
"max": {
"min": 89,
"max": 100
}
},
"chancePlateExistsInArmorPercent": {
"3": 95,
"4": 75,
"5": 25,
"6": 10
},
"armorMaxDurabilityPercentMinMax": {
"current": {
"min": 50,
"max": 100
},
"max": {
"min": 80,
"max": 100
}
},
"itemStackSizeOverrideMinMax": {
"59e690b686f7746c9f75e848": {
"min": 5,
"max": 15
},
"5485a8684bdc2da71d8b4567": {
"min": 80,
"max": 7000
},
"543be5cb4bdc2deb348b4568": {
"min": 1,
"max": 16
},
"5b432b965acfc47a8774094e": {
"min": 120,
"max": 352
},
"544fb25a4bdc2dfb738b4567": {
"min": 120,
"max": 700
},
"5e831507ea0a7c419c2f9bd9": {
"min": 5,
"max": 100
},
"5755356824597772cb798962": {
"min": 1,
"max": 400
},
"544fb3364bdc2d34748b456a": {
"min": 1,
"max": 800
},
"5448bc234bdc2d3c308b4569": {
"min": 1,
"max": 50
},
"5448f3a14bdc2d27728b4569": {
"min": 1,
"max": 25
}
},
"itemCategoryRoublePriceLimit": {
"5448eb774bdc2d0a728b4567": 14000,
"5485a8684bdc2da71d8b4567": 230,
"5795f317245977243854e041": 30000,
"5448ecbe4bdc2d60728b4568": 40000,
"57864a3d24597754843f8721": 40000,
"5448e53e4bdc2d60728b4567": 90000,
"5a341c4686f77469e155819e": 24000,
"57864a66245977548f04a81f": 71000,
"5448e54d4bdc2dcc718b4568": 100000,
"5a2c3a9486f774688b05e574": 70000,
"5448f3a64bdc2d60728b456a": 70000,
"5447b6194bdc2d67278b4567": 103000,
"550aa4cd4bdc2dd8348b456c": 70000,
"57864ee62459775490116fc1": 95000,
"5448bc234bdc2d3c308b4569": 29000,
"5447b6094bdc2dc3278b4567": 35009,
"5447bedf4bdc2d87278b4568": 27008,
"5447bed64bdc2d97278b4568": 27007,
"5447b5e04bdc2d62278b4567": 33006,
"5447b5fc4bdc2d87278b4567": 60000,
"5447b5f14bdc2d61278b4567": 60000,
"5447b5cf4bdc2d65278b4567": 28003,
"5447b6254bdc2dc3278b4568": 28002,
"5447e1d04bdc2dff2f8b4567": 19001,
"55818ae44bdc2dde698b456c": 45000,
"55818add4bdc2d5b648b456f": 35000,
"590c745b86f7743cc433c5f2": 64000,
"57864bb7245977548b3b66c2": 85000,
"5448e5284bdc2dcb718b4567": 59001,
"5a341c4086f77401f2541505": 35000,
"5d21f59b6dbe99052b54ef83": 45000,
"5645bcb74bdc2ded0b8b4578": 35000,
"644120aa86ffbe10ee032b6f": 20000,
"57864c8c245977548867e7f1": 15000,
"5447e0e74bdc2d3c308b4567": 20000,
"616eb7aea207f41933308f46": 40000,
"5b3f15d486f77432d0509248": 5000,
"5448f3ac4bdc2dce718b4569": 42000,
"5448f3a14bdc2d27728b4569": 20000,
"543be5cb4bdc2deb348b4568": 15000,
"5c99f98d86f7745c314214b3": 15000
},
"presetSlotsToRemoveChancePercent": {
"mod_scope": 70,
"mod_magazine": 50,
"mod_sight_rear": 20,
"mod_sight_front": 20,
"mod_muzzle": 40,
"mod_pistol_grip": 5,
"mod_stock": 5,
"mod_handguard": 10,
"mod_barrel": 5,
"mod_stock_000": 10,
"mod_tactical_2": 35,
"mod_foregrip": 20,
"mod_mount": 40,
"mod_reciever": 5,
"mod_charge": 5,
"mod_mount_000": 20,
"mod_mount_002": 20,
"mod_mount_003": 20,
"mod_mount_004": 20,
"mod_tactical": 40,
"mod_tactical_000": 40,
"mod_tactical_001": 40,
"mod_tactical_002": 40,
"mod_tactical_003": 40,
"front_plate": 25,
"back_plate": 75,
"left_side_plate": 75,
"right_side_plate": 75
},
"ammoMaxPenLimit": 20,
"blacklistSeasonalItems": true,
"blacklist": [
"5c164d2286f774194c5e69fa",
"543be6674bdc2df1348b4569",
"5448bf274bdc2dfc2f8b456a",
"5447bedf4bdc2d87278b4568",
"6275303a9f372d6ea97f9ec7",
"62e9103049c018f425059f38",
"59f32c3b86f77472a31742f0",
"6662e9f37fa79a6d83730fa0",
"6662ea05f6259762c56f3189",
"59f32bb586f774757e1e8442",
"6662e9aca7e0b43baa3d5f74",
"6662e9cda7e0b43baa3d5f76",
"627bce33f21bc425b06ab967",
"62f109593b54472778797866",
"5d52cc5ba4b9367408500062",
"5d52d479a4b936793d58c76b",
"5e99711486f7744bfc4af328",
"62f10b79e7ee985f386b2f47",
"633ffb5d419dbf4bea7004c6",
"543be5dd4bdc2deb348b4569",
"65649eb40bf0ed77b8044453",
"5448e54d4bdc2dcc718b4568",
"5a341c4086f77401f2541505",
"5422acb9af1c889c16000029",
"64d0b40fbe2eed70e254e2d4",
"5fc22d7c187fea44d52eda44",
"646372518610c40fc20204e8",
"65ddcc9cfa85b9f17d0dfb07",
"660312cc4d6cdfa6f500c703",
"6655e35b6bc645cb7b059912",
"6759673c76e93d8eb20b2080",
"676bf44c5539167c3603e869"
],
"coopExtractGift": {
"sendGift": true,
"messageLocaleIds": ["5da89b1886f77439d7741002 0", "5da89b3a86f7742f9026cb83 0"],
"giftExpiryHours": 168,
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 2,
"max": 5
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [
"5e997f0b86f7741ac73993e2",
"5b44abe986f774283e2e3512",
"5e99711486f7744bfc4af328",
"5e99735686f7744bfc4af32c",
"6087e570b998180e9f76dc24",
"5d52d479a4b936793d58c76b",
"5e85aac65505fa48730d8af2",
"63495c500c297e20065a08b1",
"5cde8864d7f00c0010373be1",
"5b3b713c5acfc4330140bd8d",
"60c080eb991ac167ad1c3ad4",
"6389c7f115805221fb410466"
],
"itemTypeWhitelist": [
"5d650c3e815116009f6201d2",
"57864ee62459775490116fc1",
"57864ada245977548638de91",
"57864bb7245977548b3b66c2",
"57864e4c24597754843f8723",
"57864c322459775490116fbf",
"57864a66245977548f04a81f"
],
"itemLimits": {
"5d650c3e815116009f6201d2": 1,
"57864ee62459775490116fc1": 1,
"57864ada245977548638de91": 2,
"57864bb7245977548b3b66c2": 1,
"57864e4c24597754843f8723": 1,
"57864a66245977548f04a81f": 1,
"5448e8d04bdc2ddf718b4569": 1,
"5448e8d64bdc2dce718b4568": 1,
"5448bc234bdc2d3c308b4569": 1,
"5448e5724bdc2ddf718b4568": 1,
"55818add4bdc2d5b648b456f": 1,
"543be6564bdc2df4348b4568": 1,
"550aa4cd4bdc2dd8348b456c": 1,
"5448f39d4bdc2d0a728b4568": 1,
"5448f3a14bdc2d27728b4569": 1,
"5447e1d04bdc2dff2f8b4567": 1,
"55818ad54bdc2ddc698b4569": 1
},
"itemStackLimits": {
"5449016a4bdc2d6f028b456f": {
"min": 5000,
"max": 20000
},
"569668774bdc2da2298b4568": {
"min": 75,
"max": 150
},
"5696686a4bdc2da3298b456a": {
"min": 75,
"max": 150
}
},
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
},
"btrDeliveryExpireHours": 240,
"playerRepMin": -7,
"playerRepMax": 15
"updateTime": [
{
"_name": "prapor",
"traderId": "54cb50c76803fa8b248b4571",
"seconds": {
"min": 7000,
"max": 13500
}
},
"moddedTraders": {
"clothingService": []
{
"_name": "therapist",
"traderId": "54cb57776803fa99248b456e",
"seconds": {
"min": 3000,
"max": 9500
}
},
{
"_name": "fence",
"traderId": "579dc571d53a0658a154fbec",
"seconds": {
"min": 3000,
"max": 9000
}
},
{
"_name": "skier",
"traderId": "58330581ace78e27b8b10cee",
"seconds": {
"min": 5000,
"max": 9000
}
},
{
"_name": "peacekeeper",
"traderId": "5935c25fb3acc3127c3d8cd9",
"seconds": {
"min": 2000,
"max": 15000
}
},
{
"_name": "mechanic",
"traderId": "5a7c2eca46aef81a7ca2145d",
"seconds": {
"min": 6500,
"max": 13500
}
},
{
"_name": "ragman",
"traderId": "5ac3b934156ae10c4430e83c",
"seconds": {
"min": 6500,
"max": 15000
}
},
{
"_name": "jaeger",
"traderId": "5c0647fdd443bc2504c2d371",
"seconds": {
"min": 2000,
"max": 5500
}
},
{
"_name": "btr",
"traderId": "656f0f98d80a697f855d34b1",
"seconds": {
"min": 3000,
"max": 7500
}
},
{
"_name": "Ref",
"traderId": "6617beeaa9cfa777ca915b7c",
"seconds": {
"min": 3000,
"max": 7500
}
}
],
"updateTimeDefault": 3600,
"tradersResetFromServerStart": true,
"purchasesAreFoundInRaid": false,
"traderPriceMultiplier": 1,
"fence": {
"discountOptions": {
"assortSize": 45,
"itemPriceMult": 0.8,
"presetPriceMult": 1.15,
"weaponPresetMinMax": {
"min": 5,
"max": 12
},
"equipmentPresetMinMax": {
"min": 5,
"max": 12
}
},
"partialRefreshTimeSeconds": 240,
"partialRefreshChangePercent": 15,
"assortSize": 120,
"weaponPresetMinMax": {
"min": 12,
"max": 19
},
"equipmentPresetMinMax": {
"min": 8,
"max": 15
},
"itemPriceMult": 1.3,
"presetPriceMult": 1.3,
"regenerateAssortsOnRefresh": false,
"itemTypeLimits": {
"5448eb774bdc2d0a728b4567": 10,
"5c518ec986f7743b68682ce2": 3,
"5c518ed586f774119a772aee": 0,
"5448bc234bdc2d3c308b4569": 16,
"55802f4a4bdc2ddb688b4569": 3,
"644120aa86ffbe10ee032b6f": 3,
"5c99f98d86f7745c314214b3": 2,
"5447b5cf4bdc2d65278b4567": 4,
"55818a104bdc2db9688b4569": 1,
"55818a304bdc2db5418b457d": 1,
"5448fe394bdc2d0d028b456c": 0,
"55818a594bdc2db9688b456a": 0,
"55818a604bdc2db5418b457e": 0,
"55818a684bdc2ddd698b456d": 1,
"55818a6f4bdc2db9688b456b": 1,
"55818ac54bdc2d5b648b456e": 1,
"55818acf4bdc2dde698b456b": 0,
"55818ad54bdc2ddc698b4569": 0,
"55818add4bdc2d5b648b456f": 0,
"55818ae44bdc2dde698b456c": 0,
"55818aeb4bdc2ddc698b456a": 0,
"55818af64bdc2d5b648b4570": 0,
"55818afb4bdc2dde698b456d": 1,
"55818b014bdc2ddc698b456b": 1,
"55818b084bdc2d5b648b4571": 1,
"55818b0e4bdc2dde698b456e": 0,
"55818b164bdc2ddc698b456c": 0,
"55818b1d4bdc2d5b648b4572": 1,
"55818b224bdc2dde698b456f": 1,
"550aa4cd4bdc2dd8348b456c": 0,
"550aa4dd4bdc2dc9348b4569": 1,
"5a74651486f7744e73386dd1": 0,
"5a2c3a9486f774688b05e574": 0,
"56ea9461d2720b67698b456f": 0,
"5448f3a64bdc2d60728b456a": 0,
"5a341c4686f77469e155819e": 7,
"5485a8684bdc2da71d8b4567": 23,
"5f4fbaaca5573a5ac31db429": 0,
"5447e0e74bdc2d3c308b4567": 4,
"57bef4c42459772e8d35a53b": 2,
"5b3f15d486f77432d0509248": 3,
"543be6564bdc2df4348b4568": 0,
"5448ecbe4bdc2d60728b4568": 0,
"5671435f4bdc2d96058b4569": 0,
"543be5cb4bdc2deb348b4568": 5,
"5448e53e4bdc2d60728b4567": 7
},
"preventDuplicateOffersOfCategory": [
"543be5cb4bdc2deb348b4568",
"57bef4c42459772e8d35a53b",
"5485a8684bdc2da71d8b4567",
"5448f3ac4bdc2dce718b4569",
"5448f39d4bdc2d0a728b4568",
"5448f3a14bdc2d27728b4569",
"5448bc234bdc2d3c308b4569",
"543be5e94bdc2df1348b4568",
"5448eb774bdc2d0a728b4567",
"5447e1d04bdc2dff2f8b4567",
"5448e53e4bdc2d60728b4567",
"5448ecbe4bdc2d60728b4568",
"543be6674bdc2df1348b4569",
"5448fe124bdc2da5018b4567",
"567849dd4bdc2d150f8b456e",
"5a341c4686f77469e155819e",
"5448e5284bdc2dcb718b4567",
"5447e0e74bdc2d3c308b4567",
"5b3f15d486f77432d0509248",
"5645bcb74bdc2ded0b8b4578",
"5795f317245977243854e041"
],
"weaponDurabilityPercentMinMax": {
"current": {
"min": 40,
"max": 100
},
"max": {
"min": 89,
"max": 100
}
},
"chancePlateExistsInArmorPercent": {
"3": 95,
"4": 75,
"5": 25,
"6": 10
},
"armorMaxDurabilityPercentMinMax": {
"current": {
"min": 50,
"max": 100
},
"max": {
"min": 80,
"max": 100
}
},
"itemStackSizeOverrideMinMax": {
"59e690b686f7746c9f75e848": {
"min": 5,
"max": 15
},
"5485a8684bdc2da71d8b4567": {
"min": 80,
"max": 7000
},
"543be5cb4bdc2deb348b4568": {
"min": 1,
"max": 16
},
"5b432b965acfc47a8774094e": {
"min": 120,
"max": 352
},
"544fb25a4bdc2dfb738b4567": {
"min": 120,
"max": 700
},
"5e831507ea0a7c419c2f9bd9": {
"min": 5,
"max": 100
},
"5755356824597772cb798962": {
"min": 1,
"max": 400
},
"544fb3364bdc2d34748b456a": {
"min": 1,
"max": 800
},
"5448bc234bdc2d3c308b4569": {
"min": 1,
"max": 50
},
"5448f3a14bdc2d27728b4569": {
"min": 1,
"max": 25
}
},
"itemCategoryRoublePriceLimit": {
"5448eb774bdc2d0a728b4567": 14000,
"5485a8684bdc2da71d8b4567": 230,
"5795f317245977243854e041": 30000,
"5448ecbe4bdc2d60728b4568": 40000,
"57864a3d24597754843f8721": 40000,
"5448e53e4bdc2d60728b4567": 90000,
"5a341c4686f77469e155819e": 24000,
"57864a66245977548f04a81f": 71000,
"5448e54d4bdc2dcc718b4568": 100000,
"5a2c3a9486f774688b05e574": 70000,
"5448f3a64bdc2d60728b456a": 70000,
"5447b6194bdc2d67278b4567": 103000,
"550aa4cd4bdc2dd8348b456c": 70000,
"57864ee62459775490116fc1": 95000,
"5448bc234bdc2d3c308b4569": 29000,
"5447b6094bdc2dc3278b4567": 35009,
"5447bedf4bdc2d87278b4568": 27008,
"5447bed64bdc2d97278b4568": 27007,
"5447b5e04bdc2d62278b4567": 33006,
"5447b5fc4bdc2d87278b4567": 60000,
"5447b5f14bdc2d61278b4567": 60000,
"5447b5cf4bdc2d65278b4567": 28003,
"5447b6254bdc2dc3278b4568": 28002,
"5447e1d04bdc2dff2f8b4567": 19001,
"55818ae44bdc2dde698b456c": 45000,
"55818add4bdc2d5b648b456f": 35000,
"590c745b86f7743cc433c5f2": 64000,
"57864bb7245977548b3b66c2": 85000,
"5448e5284bdc2dcb718b4567": 59001,
"5a341c4086f77401f2541505": 35000,
"5d21f59b6dbe99052b54ef83": 45000,
"5645bcb74bdc2ded0b8b4578": 35000,
"644120aa86ffbe10ee032b6f": 20000,
"57864c8c245977548867e7f1": 15000,
"5447e0e74bdc2d3c308b4567": 20000,
"616eb7aea207f41933308f46": 40000,
"5b3f15d486f77432d0509248": 5000,
"5448f3ac4bdc2dce718b4569": 42000,
"5448f3a14bdc2d27728b4569": 20000,
"543be5cb4bdc2deb348b4568": 15000,
"5c99f98d86f7745c314214b3": 15000
},
"presetSlotsToRemoveChancePercent": {
"mod_scope": 70,
"mod_magazine": 50,
"mod_sight_rear": 20,
"mod_sight_front": 20,
"mod_muzzle": 40,
"mod_pistol_grip": 5,
"mod_stock": 5,
"mod_handguard": 10,
"mod_barrel": 5,
"mod_stock_000": 10,
"mod_tactical_2": 35,
"mod_foregrip": 20,
"mod_mount": 40,
"mod_reciever": 5,
"mod_charge": 5,
"mod_mount_000": 20,
"mod_mount_002": 20,
"mod_mount_003": 20,
"mod_mount_004": 20,
"mod_tactical": 40,
"mod_tactical_000": 40,
"mod_tactical_001": 40,
"mod_tactical_002": 40,
"mod_tactical_003": 40,
"front_plate": 25,
"back_plate": 75,
"left_side_plate": 75,
"right_side_plate": 75
},
"ammoMaxPenLimit": 20,
"blacklistSeasonalItems": true,
"blacklist": [
"5c164d2286f774194c5e69fa",
"543be6674bdc2df1348b4569",
"5448bf274bdc2dfc2f8b456a",
"5447bedf4bdc2d87278b4568",
"6275303a9f372d6ea97f9ec7",
"62e9103049c018f425059f38",
"59f32c3b86f77472a31742f0",
"6662e9f37fa79a6d83730fa0",
"6662ea05f6259762c56f3189",
"59f32bb586f774757e1e8442",
"6662e9aca7e0b43baa3d5f74",
"6662e9cda7e0b43baa3d5f76",
"627bce33f21bc425b06ab967",
"62f109593b54472778797866",
"5d52cc5ba4b9367408500062",
"5d52d479a4b936793d58c76b",
"5e99711486f7744bfc4af328",
"62f10b79e7ee985f386b2f47",
"633ffb5d419dbf4bea7004c6",
"543be5dd4bdc2deb348b4569",
"65649eb40bf0ed77b8044453",
"5448e54d4bdc2dcc718b4568",
"5a341c4086f77401f2541505",
"5422acb9af1c889c16000029",
"64d0b40fbe2eed70e254e2d4",
"5fc22d7c187fea44d52eda44",
"646372518610c40fc20204e8",
"65ddcc9cfa85b9f17d0dfb07",
"660312cc4d6cdfa6f500c703",
"6655e35b6bc645cb7b059912",
"6759673c76e93d8eb20b2080",
"676bf44c5539167c3603e869"
],
"coopExtractGift": {
"sendGift": true,
"messageLocaleIds": [
"5da89b1886f77439d7741002 0",
"5da89b3a86f7742f9026cb83 0"
],
"giftExpiryHours": 168,
"weaponPresetCount": {
"min": 0,
"max": 0
},
"armorPresetCount": {
"min": 0,
"max": 0
},
"itemCount": {
"min": 2,
"max": 5
},
"weaponCrateCount": {
"min": 0,
"max": 0
},
"itemBlacklist": [
"5e997f0b86f7741ac73993e2",
"5b44abe986f774283e2e3512",
"5e99711486f7744bfc4af328",
"5e99735686f7744bfc4af32c",
"6087e570b998180e9f76dc24",
"5d52d479a4b936793d58c76b",
"5e85aac65505fa48730d8af2",
"63495c500c297e20065a08b1",
"5cde8864d7f00c0010373be1",
"5b3b713c5acfc4330140bd8d",
"60c080eb991ac167ad1c3ad4",
"6389c7f115805221fb410466"
],
"itemTypeWhitelist": [
"5d650c3e815116009f6201d2",
"57864ee62459775490116fc1",
"57864ada245977548638de91",
"57864bb7245977548b3b66c2",
"57864e4c24597754843f8723",
"57864c322459775490116fbf",
"57864a66245977548f04a81f"
],
"itemLimits": {
"5d650c3e815116009f6201d2": 1,
"57864ee62459775490116fc1": 1,
"57864ada245977548638de91": 2,
"57864bb7245977548b3b66c2": 1,
"57864e4c24597754843f8723": 1,
"57864a66245977548f04a81f": 1,
"5448e8d04bdc2ddf718b4569": 1,
"5448e8d64bdc2dce718b4568": 1,
"5448bc234bdc2d3c308b4569": 1,
"5448e5724bdc2ddf718b4568": 1,
"55818add4bdc2d5b648b456f": 1,
"543be6564bdc2df4348b4568": 1,
"550aa4cd4bdc2dd8348b456c": 1,
"5448f39d4bdc2d0a728b4568": 1,
"5448f3a14bdc2d27728b4569": 1,
"5447e1d04bdc2dff2f8b4567": 1,
"55818ad54bdc2ddc698b4569": 1,
"59c1383d86f774290a37e0ca": 1
},
"itemStackLimits": {
"5449016a4bdc2d6f028b456f": {
"min": 5000,
"max": 20000
},
"569668774bdc2da2298b4568": {
"min": 75,
"max": 150
},
"5696686a4bdc2da3298b456a": {
"min": 75,
"max": 150
}
},
"allowBossItems": false,
"useRewardItemBlacklist": true,
"blockSeasonalItemsOutOfSeason": true
},
"btrDeliveryExpireHours": 240,
"playerRepMin": -7,
"playerRepMax": 15
},
"moddedTraders": {
"clothingService": []
}
}
@@ -1,167 +1,307 @@
{
"acceleration": 7,
"weather": {
"generateWeatherAmountHours": 24,
"seasonValues": {
"default": {
"clouds": {
"values": [-1, -0.8, -0.5, 0.1, 0, 0.15, 0.4, 1],
"weights": [70, 22, 22, 15, 15, 15, 5, 4]
},
"windSpeed": {
"values": [0, 1, 2, 3, 4],
"weights": [6, 3, 2, 1, 1]
},
"windDirection": {
"values": [1, 2, 3, 4, 5, 6, 7, 8],
"weights": [1, 1, 1, 1, 1, 1, 1, 1]
},
"windGustiness": {
"min": 0,
"max": 1
},
"rain": {
"values": [1, 2, 3, 4, 5],
"weights": [20, 1, 1, 1, 1]
},
"rainIntensity": {
"min": 0,
"max": 1
},
"fog": {
"values": [0.0013, 0.0018, 0.002, 0.004, 0.006],
"weights": [35, 6, 4, 3, 1]
},
"temp": {
"day": {
"min": 9,
"max": 32
},
"night": {
"min": 2,
"max": 16
}
},
"pressure": {
"min": 760,
"max": 780
}
},
"WINTER": {
"clouds": {
"values": [-1, 0.65, 1],
"weights": [2, 1, 1]
},
"windSpeed": {
"values": [0, 1, 2, 3, 4],
"weights": [6, 3, 2, 1, 1]
},
"windDirection": {
"values": [1, 2, 3, 4, 5, 6, 7, 8],
"weights": [1, 1, 1, 1, 1, 1, 1, 1]
},
"windGustiness": {
"min": 0,
"max": 1
},
"rain": {
"values": [1, 2, 3, 4, 5],
"weights": [0, 1, 1, 1, 1]
},
"rainIntensity": {
"min": 0,
"max": 1
},
"fog": {
"values": [0.0013, 0.0018, 0.002, 0.004, 0.012],
"weights": [5, 4, 1, 3, 2]
},
"temp": {
"day": {
"min": -5,
"max": 3
},
"night": {
"min": -22,
"max": -5
}
},
"pressure": {
"min": 760,
"max": 780
}
}
"acceleration": 7,
"weather": {
"generateWeatherAmountHours": 24,
"seasonValues": {
"default": {
"clouds": {
"values": [
-1,
-0.8,
-0.5,
0.1,
0,
0.15,
0.4,
1
],
"weights": [
70,
22,
22,
15,
15,
15,
5,
4
]
},
"timePeriod": {
"values": [15, 30],
"weights": [1, 2]
"windSpeed": {
"values": [
0,
1,
2,
3,
4
],
"weights": [
6,
3,
2,
1,
1
]
},
"windDirection": {
"values": [
1,
2,
3,
4,
5,
6,
7,
8
],
"weights": [
1,
1,
1,
1,
1,
1,
1,
1
]
},
"windGustiness": {
"min": 0,
"max": 1
},
"rain": {
"values": [
1,
2,
3,
4,
5
],
"weights": [
20,
1,
1,
1,
1
]
},
"rainIntensity": {
"min": 0,
"max": 1
},
"fog": {
"values": [
0.0013,
0.0018,
0.002,
0.004,
0.006
],
"weights": [
35,
6,
4,
3,
1
]
},
"temp": {
"day": {
"min": 9,
"max": 32
},
"night": {
"min": 2,
"max": 16
}
},
"pressure": {
"min": 760,
"max": 780
}
},
"WINTER": {
"clouds": {
"values": [
-1,
0.65,
1
],
"weights": [
2,
1,
1
]
},
"windSpeed": {
"values": [
0,
1,
2,
3,
4
],
"weights": [
6,
3,
2,
1,
1
]
},
"windDirection": {
"values": [
1,
2,
3,
4,
5,
6,
7,
8
],
"weights": [
1,
1,
1,
1,
1,
1,
1,
1
]
},
"windGustiness": {
"min": 0,
"max": 1
},
"rain": {
"values": [
1,
2,
3,
4,
5
],
"weights": [
0,
1,
1,
1,
1
]
},
"rainIntensity": {
"min": 0,
"max": 1
},
"fog": {
"values": [
0.0013,
0.0018,
0.002,
0.004,
0.012
],
"weights": [
5,
4,
1,
3,
2
]
},
"temp": {
"day": {
"min": -5,
"max": 3
},
"night": {
"min": -22,
"max": -5
}
},
"pressure": {
"min": 760,
"max": 780
}
}
},
"seasonDates": [
{
"seasonType": 0,
"name": "SUMMER",
"startDay": "23",
"startMonth": "6",
"endDay": "15",
"endMonth": "10"
},
{
"seasonType": 1,
"name": "AUTUMN",
"startDay": "15",
"startMonth": "10",
"endDay": "1",
"endMonth": "11"
},
{
"seasonType": 4,
"name": "AUTUMN_LATE",
"startDay": "1",
"startMonth": "11",
"endDay": "21",
"endMonth": "12"
},
{
"seasonType": 2,
"name": "WINTER_START",
"startDay": "21",
"startMonth": "12",
"endDay": "31",
"endMonth": "12"
},
{
"seasonType": 2,
"name": "WINTER_END",
"startDay": "1",
"startMonth": "1",
"endDay": "9",
"endMonth": "1"
},
{
"seasonType": 5,
"name": "SPRING_EARLY",
"startDay": "9",
"startMonth": "1",
"endDay": "20",
"endMonth": "3"
},
{
"seasonType": 3,
"name": "SPRING",
"startDay": "20",
"startMonth": "3",
"endDay": "23",
"endMonth": "6"
},
{
"seasonType": 4,
"name": "STORM",
"startDay": "24",
"startMonth": "10",
"endDay": "4",
"endMonth": "11"
}
],
"overrideSeason": null
"timePeriod": {
"values": [
15,
30
],
"weights": [
1,
2
]
}
},
"seasonDates": [
{
"seasonType": 0,
"name": "SUMMER",
"startDay": "23",
"startMonth": "6",
"endDay": "15",
"endMonth": "10"
},
{
"seasonType": 1,
"name": "AUTUMN",
"startDay": "15",
"startMonth": "10",
"endDay": "1",
"endMonth": "11"
},
{
"seasonType": 4,
"name": "AUTUMN_LATE",
"startDay": "1",
"startMonth": "11",
"endDay": "21",
"endMonth": "12"
},
{
"seasonType": 2,
"name": "WINTER_START",
"startDay": "21",
"startMonth": "12",
"endDay": "31",
"endMonth": "12"
},
{
"seasonType": 2,
"name": "WINTER_END",
"startDay": "1",
"startMonth": "1",
"endDay": "9",
"endMonth": "1"
},
{
"seasonType": 5,
"name": "SPRING_EARLY",
"startDay": "9",
"startMonth": "1",
"endDay": "20",
"endMonth": "3"
},
{
"seasonType": 3,
"name": "SPRING",
"startDay": "20",
"startMonth": "3",
"endDay": "23",
"endMonth": "6"
},
{
"seasonType": 4,
"name": "STORM",
"startDay": "24",
"startMonth": "10",
"endDay": "4",
"endMonth": "11"
}
],
"overrideSeason": null
}
@@ -1,92 +1,92 @@
{
"_id": "60dc8576337fdf54e60e1800",
"aid": 0,
"savage": null,
"Info": {
"Nickname": "BOTNAME",
"LowerNickname": "",
"Side": "Savage",
"Voice": "Scav_1",
"Level": 1,
"Experience": 0,
"RegistrationDate": 0,
"GameVersion": "",
"AccountType": 0,
"MemberCategory": 0,
"SelectedMemberCategory": 0,
"lockedMoveCommands": false,
"SavageLockTime": 0,
"LastTimePlayedAsSavage": 0,
"Settings": {
"Role": "assault",
"BotDifficulty": "normal",
"Experience": -1,
"StandingForKill": -0.04,
"AggressorBonus": 0.02
},
"NicknameChangeDate": 0,
"NeedWipeOptions": [],
"lastCompletedWipe": null,
"lastCompletedEvent": null,
"BannedState": false,
"BannedUntil": 0,
"IsStreamerModeAvailable": false,
"SquadInviteRestriction": false,
"HasCoopExtension": false,
"isMigratedSkills": false,
"HasPveGame": false
"_id": "60dc8576337fdf54e60e1800",
"aid": 0,
"savage": null,
"Info": {
"Nickname": "BOTNAME",
"LowerNickname": "",
"Side": "Savage",
"Voice": "Scav_1",
"Level": 1,
"Experience": 0,
"RegistrationDate": 0,
"GameVersion": "",
"AccountType": 0,
"MemberCategory": 0,
"SelectedMemberCategory": 0,
"lockedMoveCommands": false,
"SavageLockTime": 0,
"LastTimePlayedAsSavage": 0,
"Settings": {
"Role": "assault",
"BotDifficulty": "normal",
"Experience": -1,
"StandingForKill": -0.04,
"AggressorBonus": 0.02
},
"Customization": {
"Head": "5cc2e4d014c02e000d0115f8",
"Body": "5cc2e59214c02e000f16684e",
"Feet": "5cde9fb87d6c8b0474535da9",
"Hands": "5cc2e68f14c02e28b47de290"
},
"Health": {
"UpdateTime": 0,
"Immortal": false
},
"Inventory": {
"fastPanel": {},
"hideoutAreaStashes": {},
"favoriteItems": []
},
"Skills": {
"Common": [],
"Mastering": [],
"Points": 0
},
"Stats": {
"Eft": {
"SessionCounters": {
"Items": []
},
"OverallCounters": {
"Items": []
},
"SessionExperienceMult": 0,
"ExperienceBonusMult": 0,
"TotalSessionExperience": 0,
"LastSessionDate": 0,
"Aggressor": null,
"DroppedItems": [],
"FoundInRaidItems": [],
"Victims": [],
"CarriedQuestItems": [],
"DamageHistory": {
"LethalDamagePart": "Head",
"LethalDamage": null,
"BodyParts": []
},
"LastPlayerState": null,
"TotalInGameTime": 0,
"SurvivorClass": "Unknown"
}
},
"Encyclopedia": null,
"TaskConditionCounters": {},
"InsuredItems": [],
"Hideout": null,
"Bonuses": [],
"WishList": []
"NicknameChangeDate": 0,
"NeedWipeOptions": [],
"lastCompletedWipe": null,
"lastCompletedEvent": null,
"BannedState": false,
"BannedUntil": 0,
"IsStreamerModeAvailable": false,
"SquadInviteRestriction": false,
"HasCoopExtension": false,
"isMigratedSkills": false,
"HasPveGame": false
},
"Customization": {
"Head": "5cc2e4d014c02e000d0115f8",
"Body": "5cc2e59214c02e000f16684e",
"Feet": "5cde9fb87d6c8b0474535da9",
"Hands": "5cc2e68f14c02e28b47de290"
},
"Health": {
"UpdateTime": 0,
"Immortal": false
},
"Inventory": {
"fastPanel": {},
"hideoutAreaStashes": {},
"favoriteItems": []
},
"Skills": {
"Common": [],
"Mastering": [],
"Points": 0
},
"Stats": {
"Eft": {
"SessionCounters": {
"Items": []
},
"OverallCounters": {
"Items": []
},
"SessionExperienceMult": 0,
"ExperienceBonusMult": 0,
"TotalSessionExperience": 0,
"LastSessionDate": 0,
"Aggressor": null,
"DroppedItems": [],
"FoundInRaidItems": [],
"Victims": [],
"CarriedQuestItems": [],
"DamageHistory": {
"LethalDamagePart": "Head",
"LethalDamage": null,
"BodyParts": []
},
"LastPlayerState": null,
"TotalInGameTime": 0,
"SurvivorClass": "Unknown"
}
},
"Encyclopedia": null,
"TaskConditionCounters": {},
"InsuredItems": [],
"Hideout": null,
"Bonuses": [],
"WishList": []
}
@@ -132,4 +132,4 @@
"WAVE_ONLY_AS_ONLINE": false,
"LOCAL_BOTS_COUNT": 100,
"AXE_MAN_KILLS_END": 0
}
}
@@ -2047,8 +2047,8 @@
},
"reward": {
"easy": {
"max": 350,
"min": 350
"max": 350,
"min": 350
},
"hard": {
"max": 350,
@@ -2152,7 +2152,7 @@
"min": -1
},
"normal": {
"max": 20,
"max": -1,
"min": -1
}
},
@@ -69,7 +69,8 @@
"Bear_1_Eng": 1,
"Bear_2": 1,
"Bear_2_Eng": 1,
"Bear_3": 1
"Bear_3": 1,
"Bear_4": 1
}
},
"chances": {
@@ -456,7 +457,6 @@
},
"Mind": {
"ACTIVE_FOLLOW_PLAYER_EVENTS": false,
"CAN_LOOT_BOSS_CLUSTER": false,
"AGGRESSOR_LOYALTY_BONUS": 0,
"AI_POWER_COEF": 120,
"AMBUSH_WHEN_UNDER_FIRE": true,
@@ -466,6 +466,7 @@
"BOSS_IGNORE_LOYALTY": true,
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_LOOT_BOSS_CLUSTER": false,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false,
@@ -531,7 +532,7 @@
"gifter"
],
"REVENGE_FOR_SAVAGE_PLAYERS": false,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY" : 5000.0,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 5000,
"SEARCH_TARGET": true,
"SEC_TO_MORE_DIST_TO_RUN": 10,
"SHOOT_INSTEAD_DOG_FIGHT": 9,
@@ -980,7 +981,6 @@
"WAIT_NEW__LOOK_SENSOR": 7.8
},
"Mind": {
"CAN_LOOT_BOSS_CLUSTER": false,
"AGGRESSOR_LOYALTY_BONUS": 0,
"AI_POWER_COEF": 120,
"AMBUSH_WHEN_UNDER_FIRE": true,
@@ -990,6 +990,7 @@
"BOSS_IGNORE_LOYALTY": true,
"BULLET_FEEL_CLOSE_SDIST": 5,
"BULLET_FEEL_DIST": 360,
"CAN_LOOT_BOSS_CLUSTER": false,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false,
@@ -1055,7 +1056,7 @@
"gifter"
],
"REVENGE_FOR_SAVAGE_PLAYERS": false,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY" : 5000.0,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 5000,
"SEARCH_TARGET": true,
"SEC_TO_MORE_DIST_TO_RUN": 10,
"SHOOT_INSTEAD_DOG_FIGHT": 9,
@@ -1503,7 +1504,6 @@
"WAIT_NEW__LOOK_SENSOR": 7.8
},
"Mind": {
"CAN_LOOT_BOSS_CLUSTER": false,
"AGGRESSOR_LOYALTY_BONUS": 0,
"AI_POWER_COEF": 120,
"AMBUSH_WHEN_UNDER_FIRE": false,
@@ -1513,6 +1513,7 @@
"BOSS_IGNORE_LOYALTY": true,
"BULLET_FEEL_CLOSE_SDIST": 5,
"BULLET_FEEL_DIST": 360,
"CAN_LOOT_BOSS_CLUSTER": false,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false,
@@ -1578,7 +1579,7 @@
"gifter"
],
"REVENGE_FOR_SAVAGE_PLAYERS": false,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY" : 5000.0,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 5000,
"SEARCH_TARGET": true,
"SEC_TO_MORE_DIST_TO_RUN": 10,
"SHOOT_INSTEAD_DOG_FIGHT": 0.5,
@@ -2025,7 +2026,6 @@
},
"Mind": {
"ACTIVE_FOLLOW_PLAYER_EVENTS": false,
"CAN_LOOT_BOSS_CLUSTER": false,
"AGGRESSOR_LOYALTY_BONUS": 0,
"AI_POWER_COEF": 120,
"AMBUSH_WHEN_UNDER_FIRE": true,
@@ -2035,6 +2035,7 @@
"BOSS_IGNORE_LOYALTY": true,
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_LOOT_BOSS_CLUSTER": false,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false,
@@ -2100,7 +2101,7 @@
"gifter"
],
"REVENGE_FOR_SAVAGE_PLAYERS": false,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY" : 5000.0,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 5000,
"SEARCH_TARGET": true,
"SEC_TO_MORE_DIST_TO_RUN": 10,
"SHOOT_INSTEAD_DOG_FIGHT": 5,
@@ -3077,6 +3078,12 @@
"5cadf6e5ae921500113bb973": 4,
"5cadf6eeae921500134b2799": 2
},
"Caliber127x99": {
"67d41936f378a36c4706eeb9": 20,
"67dc212493ce32834b0fa446": 10,
"67dc255ee3028a8b120efc48": 5,
"67dc2648ba5b79876906a166": 1
},
"Caliber12g": {
"560d5e524bdc2d25448b4571": 10,
"58820d1224597753c90aeb13": 10,
@@ -3567,7 +3574,8 @@
"673cab3e03c6a20581028bc1": 1,
"674d6121c09f69dfb201a888": 3,
"674fe9a75e51f1c47c04ec23": 2,
"676176d362e0497044079f4c": 2
"676176d362e0497044079f4c": 2,
"67d0576f29f580ebc10efd08": 0
},
"Headwear": {
"5645bc214bdc2d363b8b4571": 43,
@@ -21380,6 +21388,46 @@
"Soft_armor_front": [
"6575bc88c6700bd6b40e8a57"
]
},
"67d0576f29f580ebc10efd08": {
"mod_barrel": [
"67d4178bffb910d21f04720a"
],
"mod_charge": [
"6130ca3fd92c473c77020dbd"
],
"mod_magazine": [
"67d418d0ffb910d21f04720e"
],
"mod_pistol_grip": [
"5f6341043ada5942720e2dc5",
"6087e663132d4d12c81fd96b",
"648ae3e356c6310a830fc291",
"623c3be0484b5003161840dc",
"5649ad3f4bdc2df8348b4585",
"5beec8ea0db834001a6f9dbf",
"5649ade84bdc2d1b2b8b4587",
"59e62cc886f77440d40b52a1",
"5a0071d486f77404e23a12b2",
"57e3dba62459770f0c32322b",
"5cf54404d7f00c108840b2ef",
"5e2192a498a36665e8337386",
"63f4da90f31d4a33b87bd054",
"5b30ac585acfc433000eb79c",
"59e6318286f77444dd62c4cc",
"651580dc71a4f10aec4b6056",
"5cf50850d7f00c056e24104c",
"5cf508bfd7f00c056e24104e",
"628a664bccaab13006640e47",
"628c9ab845c59e5b80768a81",
"5947f92f86f77427344a76b1",
"5c6bf4aa2e2216001219b0ae",
"5947fa2486f77425b47c1a9b",
"5649ae4a4bdc2d1b2b8b4588"
],
"mod_reciever": [
"67d416e19bd76ef20f0e743b"
]
}
}
},
@@ -2789,4 +2789,4 @@
}
}
}
}
}
@@ -2726,7 +2726,7 @@
}
},
"lastName": [
"of"
"of Tagilla"
],
"skills": {
"Common": {
@@ -2352,6 +2352,9 @@
"Caliber127x55": {
"5cadf6ddae9215051e1c23b2": 1
},
"Caliber40mmRU": {
"5656eb674bdc2d35148b457c": 1
},
"Caliber12g": {
"560d5e524bdc2d25448b4571": 13500,
"58820d1224597753c90aeb13": 2940,
@@ -2352,6 +2352,9 @@
"Caliber127x55": {
"5cadf6ddae9215051e1c23b2": 1
},
"Caliber40mmRU": {
"5656eb674bdc2d35148b457c": 1
},
"Caliber12g": {
"560d5e524bdc2d25448b4571": 11000,
"58820d1224597753c90aeb13": 2380,
@@ -2092,8 +2092,8 @@
},
"reward": {
"normal": {
"max": 800,
"min": 800
"max": 800,
"min": 800
}
},
"standingForKill": {
@@ -2037,8 +2037,8 @@
},
"reward": {
"normal": {
"max": 275,
"min": 275
"max": 275,
"min": 275
}
},
"standingForKill": {
@@ -59,7 +59,9 @@
"Usec_2": 1,
"Usec_3": 1,
"Usec_4": 1,
"Usec_5": 1
"Usec_5": 1,
"Usec_6": 1,
"Usec_7": 1
}
},
"chances": {
@@ -446,7 +448,7 @@
},
"Mind": {
"ACTIVE_FOLLOW_PLAYER_EVENTS": false,
"CAN_LOOT_BOSS_CLUSTER": false,
"CAN_LOOT_BOSS_CLUSTER": false,
"AGGRESSOR_LOYALTY_BONUS": 0,
"AI_POWER_COEF": 120,
"AMBUSH_WHEN_UNDER_FIRE": true,
@@ -521,7 +523,7 @@
"gifter"
],
"REVENGE_FOR_SAVAGE_PLAYERS": false,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY" : 5000.0,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 5000.0,
"SEARCH_TARGET": true,
"SEC_TO_MORE_DIST_TO_RUN": 10,
"SHOOT_INSTEAD_DOG_FIGHT": 9,
@@ -1045,7 +1047,7 @@
"gifter"
],
"REVENGE_FOR_SAVAGE_PLAYERS": false,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY" : 5000.0,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 5000.0,
"SEARCH_TARGET": true,
"SEC_TO_MORE_DIST_TO_RUN": 10,
"SHOOT_INSTEAD_DOG_FIGHT": 9,
@@ -1568,7 +1570,7 @@
"gifter"
],
"REVENGE_FOR_SAVAGE_PLAYERS": false,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY" : 5000.0,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 5000.0,
"SEARCH_TARGET": true,
"SEC_TO_MORE_DIST_TO_RUN": 10,
"SHOOT_INSTEAD_DOG_FIGHT": 0.5,
@@ -2015,7 +2017,7 @@
},
"Mind": {
"ACTIVE_FOLLOW_PLAYER_EVENTS": false,
"CAN_LOOT_BOSS_CLUSTER": false,
"CAN_LOOT_BOSS_CLUSTER": false,
"AGGRESSOR_LOYALTY_BONUS": 0,
"AI_POWER_COEF": 120,
"AMBUSH_WHEN_UNDER_FIRE": true,
@@ -2090,7 +2092,7 @@
"gifter"
],
"REVENGE_FOR_SAVAGE_PLAYERS": false,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY" : 5000.0,
"SDIST_TO_DELIVER_INFO_WHEN_ENEMY": 5000.0,
"SEARCH_TARGET": true,
"SEC_TO_MORE_DIST_TO_RUN": 10,
"SHOOT_INSTEAD_DOG_FIGHT": 5,
@@ -3051,6 +3053,12 @@
},
"inventory": {
"Ammo": {
"Caliber127x99": {
"67d41936f378a36c4706eeb9": 20,
"67dc212493ce32834b0fa446": 10,
"67dc255ee3028a8b120efc48": 5,
"67dc2648ba5b79876906a166": 1
},
"Caliber1143x23ACP": {
"5e81f423763d9f754677bf2e": 10,
"5ea2a8e200685063ec28c05a": 7,
@@ -3557,7 +3565,8 @@
"673cab3e03c6a20581028bc1": 1,
"674d6121c09f69dfb201a888": 3,
"674fe9a75e51f1c47c04ec23": 2,
"676176d362e0497044079f4c": 2
"676176d362e0497044079f4c": 2,
"67d0576f29f580ebc10efd08": 0
},
"Headwear": {
"5645bc214bdc2d363b8b4571": 43,
@@ -21025,6 +21034,46 @@
"676149d8e889e1972605d6be"
]
},
"67d0576f29f580ebc10efd08": {
"mod_charge": [
"6130ca3fd92c473c77020dbd"
],
"mod_reciever": [
"67d416e19bd76ef20f0e743b"
],
"mod_pistol_grip": [
"5f6341043ada5942720e2dc5",
"6087e663132d4d12c81fd96b",
"648ae3e356c6310a830fc291",
"623c3be0484b5003161840dc",
"5649ad3f4bdc2df8348b4585",
"5beec8ea0db834001a6f9dbf",
"5649ade84bdc2d1b2b8b4587",
"59e62cc886f77440d40b52a1",
"5a0071d486f77404e23a12b2",
"57e3dba62459770f0c32322b",
"5cf54404d7f00c108840b2ef",
"5e2192a498a36665e8337386",
"63f4da90f31d4a33b87bd054",
"5b30ac585acfc433000eb79c",
"59e6318286f77444dd62c4cc",
"651580dc71a4f10aec4b6056",
"5cf50850d7f00c056e24104c",
"5cf508bfd7f00c056e24104e",
"628a664bccaab13006640e47",
"628c9ab845c59e5b80768a81",
"5947f92f86f77427344a76b1",
"5c6bf4aa2e2216001219b0ae",
"5947fa2486f77425b47c1a9b",
"5649ae4a4bdc2d1b2b8b4588"
],
"mod_magazine": [
"67d418d0ffb910d21f04720e"
],
"mod_barrel": [
"67d4178bffb910d21f04720a"
]
},
"676176d362e0497044079f4c": {
"mod_charge": [
"6181688c6c780c1e710c9b04"
@@ -27940,14 +27940,14 @@
{
"isNotRandom": true,
"side": [
"Savage"
"Usec"
],
"voice": "Arena_Guard_1"
},
{
"isNotRandom": true,
"side": [
"Savage"
"Bear"
],
"voice": "Arena_Guard_2"
},
@@ -28053,6 +28053,16 @@
"Savage"
],
"voice": "BossAgroTagilla"
},
{
"isNotRandom": true,
"side": [],
"voice": "Usec_Rob_Voice"
},
{
"isNotRandom": false,
"side": [],
"voice": "Bear_Vitaly_Voice"
}
],
"SavageBody": {
@@ -32675,7 +32685,8 @@
"OnlyInDeathCase": false
},
"ItemsCommonSettings": {
"ItemRemoveAfterInterruptionTime": 2
"ItemRemoveAfterInterruptionTime": 2,
"MaxBackpackInserting": 7
},
"KarmaCalculationSettings": {
"defaultPveKarmaValue": 0.5,
@@ -33411,6 +33422,14 @@
"Templates": [
"673cab3e03c6a20581028bc1"
]
},
{
"Level2": 200,
"Level3": 300,
"Name": "AK50",
"Templates": [
"67d0576f29f580ebc10efd08"
]
}
],
"MaxBotsAliveOnMap": 36,
@@ -34992,6 +35011,21 @@
"MaxInLobby": 2,
"MaxInRaid": 2,
"TemplateId": "676bf44c5539167c3603e869"
},
{
"MaxInLobby": 0,
"MaxInRaid": 0,
"TemplateId": "6841b6b674a3c16f5e03d653"
},
{
"MaxInLobby": 0,
"MaxInRaid": 0,
"TemplateId": "6841b179322db20d190b4b99"
},
{
"MaxInLobby": 0,
"MaxInRaid": 0,
"TemplateId": "6841b1ff51bf8645f7067bca"
}
],
"RunddansSettings": {
File diff suppressed because it is too large Load Diff
@@ -1,66 +1,72 @@
[{
"_id": "5df8a81f8f77747fcf5f5702",
"type": 21,
"enabled": true,
"needsFuel": true,
"takeFromSlotLocked": false,
"craftGivesExp": true,
"displayLevel": true,
[
{
"_id": "5df8a81f8f77747fcf5f5702",
"type": 21,
"enabled": true,
"needsFuel": true,
"takeFromSlotLocked": false,
"craftGivesExp": true,
"displayLevel": true,
"requirements": [],
"stages": {
"0": {
"requirements": [],
"stages": {
"0": {
"requirements": [],
"bonuses": [],
"slots": 0,
"constructionTime": 0.0,
"description": "",
"container": "",
"autoUpgrade": false,
"displayInterface": true,
"improvements": []
},
"1": {
"requirements": [{
"areaType": 4,
"requiredLevel": 1,
"type": "Area"
}, {
"templateId": "5449016a4bdc2d6f028b456f",
"count": 10000,
"isFunctional": false,
"isEncoded": false,
"type": "Item"
}, {
"templateId": "5df8a77486f77412672a1e3f",
"count": 1,
"isFunctional": false,
"isEncoded": false,
"type": "Item"
}, {
"templateId": "5df8a72c86f77412640e2e83",
"count": 1,
"isFunctional": false,
"isEncoded": false,
"type": "Item"
}, {
"templateId": "5df8a6a186f77412640e2e80",
"count": 1,
"isFunctional": false,
"isEncoded": false,
"type": "Item"
}
],
"bonuses": [],
"slots": 0,
"constructionTime": 0.0,
"description": "",
"container": "",
"autoUpgrade": false,
"displayInterface": true,
"improvements": []
}
},
"enableAreaRequirements": false,
"parentArea": null
}
"bonuses": [],
"slots": 0,
"constructionTime": 0.0,
"description": "",
"container": "",
"autoUpgrade": false,
"displayInterface": true,
"improvements": []
},
"1": {
"requirements": [
{
"areaType": 4,
"requiredLevel": 1,
"type": "Area"
},
{
"templateId": "5449016a4bdc2d6f028b456f",
"count": 10000,
"isFunctional": false,
"isEncoded": false,
"type": "Item"
},
{
"templateId": "5df8a77486f77412672a1e3f",
"count": 1,
"isFunctional": false,
"isEncoded": false,
"type": "Item"
},
{
"templateId": "5df8a72c86f77412640e2e83",
"count": 1,
"isFunctional": false,
"isEncoded": false,
"type": "Item"
},
{
"templateId": "5df8a6a186f77412640e2e80",
"count": 1,
"isFunctional": false,
"isEncoded": false,
"type": "Item"
}
],
"bonuses": [],
"slots": 0,
"constructionTime": 0.0,
"description": "",
"container": "",
"autoUpgrade": false,
"displayInterface": true,
"improvements": []
}
},
"enableAreaRequirements": false,
"parentArea": null
}
]
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -321,4 +321,4 @@
}
}
}
]
]
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -7418,6 +7418,12 @@
"5fc613c80b735e7b024c76e2 Name": "",
"5fc613c80b735e7b024c76e2 ShortName": "",
"5fc613c80b735e7b024c76e2 Description": "",
"5fc614390b735e7b024c76e6 Name": "",
"5fc614390b735e7b024c76e6 ShortName": "",
"5fc614390b735e7b024c76e6 Description": "",
"5fc6144b0b735e7b024c76e7 Name": "",
"5fc6144b0b735e7b024c76e7 ShortName": "",
"5fc6144b0b735e7b024c76e7 Description": "",
"5fc614da00efd824885865c2 Name": "Sergei",
"5fc614da00efd824885865c2 ShortName": "Sergei",
"5fc614da00efd824885865c2 Description": "Sergei",
@@ -7427,6 +7433,9 @@
"5fc615110b735e7b024c76ea Name": "Josh",
"5fc615110b735e7b024c76ea ShortName": "Josh",
"5fc615110b735e7b024c76ea Description": "Josh",
"5fc6155b0b735e7b024c76ec Name": "",
"5fc6155b0b735e7b024c76ec ShortName": "",
"5fc6155b0b735e7b024c76ec Description": "",
"5fc64ea372b0dd78d51159dc Name": "Cultist knife",
"5fc64ea372b0dd78d51159dc ShortName": "Knife",
"5fc64ea372b0dd78d51159dc Description": "A knife of a strange shape and with strange signs, taken from the cultists. Seems like it is used as a ritual knife, but apparently it's not limited to this use. It has technological changes in the design intended for the use of toxic substances - it's better not to touch the blade.",
@@ -8138,6 +8147,9 @@
"617aa4dd8166f034d57de9c5 Name": "M18 smoke grenade (Green)",
"617aa4dd8166f034d57de9c5 ShortName": "M18",
"617aa4dd8166f034d57de9c5 Description": "The M18 smoke grenade made in the USA. Used in the US Army since the Second World War. The smoke is green-colored.",
"617be9e4e02b3b3fa50fa8f2 Name": "",
"617be9e4e02b3b3fa50fa8f2 ShortName": "",
"617be9e4e02b3b3fa50fa8f2 Description": "",
"617fd91e5539a84ec44ce155 Name": "RGN hand grenade",
"617fd91e5539a84ec44ce155 ShortName": "RGN",
"617fd91e5539a84ec44ce155 Description": "RGN (Ruchnaya Granata Nastupatel'naya - \"Offensive Hand Grenade\") is an offensive anti-personnel fragmentation hand grenade of impact action.",
@@ -9980,6 +9992,9 @@
"6464d870bb2c580352070cc4 Name": "PK bipod",
"6464d870bb2c580352070cc4 ShortName": "PK",
"6464d870bb2c580352070cc4 Description": "A standard-issue bipod for Kalashnikov Machine gun. Manufactured by V.A. Degtyarev Plant.",
"646e46d8f5438077af029fdb Name": "",
"646e46d8f5438077af029fdb ShortName": "",
"646e46d8f5438077af029fdb Description": "",
"646f62fee779812413011ab7 Name": "Zenit 2D flashlight",
"646f62fee779812413011ab7 ShortName": "2D",
"646f62fee779812413011ab7 Description": "The 2D tactical flashlight, installed on a special mount. Manufactured by Zenit.",
@@ -13667,6 +13682,9 @@
"6719023b612cc94b9008e78c Name": "AA-12 stock assembly (TerraGroup)",
"6719023b612cc94b9008e78c ShortName": "AA-12 LABS",
"6719023b612cc94b9008e78c Description": "A standard-issue stock assembly for the Auto Assault-12 shotgun. TerraGroup version.",
"67199b72b79a024c140a17b7 Name": "",
"67199b72b79a024c140a17b7 ShortName": "",
"67199b72b79a024c140a17b7 Description": "",
"671a406a6d315b526708f103 Name": "Stolen weapon case",
"671a406a6d315b526708f103 ShortName": "Weapon case",
"671a406a6d315b526708f103 Description": "Stolen weapon case.",
@@ -14439,10 +14457,10 @@
"67614b3ab8c060ebb204b106 ShortName": "Khorovod",
"67614b3ab8c060ebb204b106 Description": "An armband by which the participants of the Khorovod can recognize each other. Without it, you cannot be part of the celebration.",
"67614b542eb91250020f2b86 Name": "Armband (Prestige 1)",
"67614b542eb91250020f2b86 ShortName": "Prestige 1",
"67614b542eb91250020f2b86 ShortName": "Prestige",
"67614b542eb91250020f2b86 Description": "This armband will help demonstrate your status in Tarkov.",
"67614b6b47c71ea3d40256d7 Name": "Armband (Prestige 2)",
"67614b6b47c71ea3d40256d7 ShortName": "Prestige 2",
"67614b6b47c71ea3d40256d7 ShortName": "Prestige",
"67614b6b47c71ea3d40256d7 Description": "These armbands are only for the best of the best.",
"67614e3a6a90e4f10b0b140d Name": "Festive airdrop supply crate",
"67614e3a6a90e4f10b0b140d ShortName": "Festive airdrop supply crate",
@@ -14734,11 +14752,11 @@
"67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.",
"67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)",
"67a5f9c8fafb8efd440694b8 ShortName": "Half-mask",
"67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)",
"67a5f9e7f7041a25760dda38 ShortName": "Half-mask",
"67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)",
"67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas White)",
"67a5fa01fafb8efd440694ba ShortName": "Half-mask",
"67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a9cc9cf05be177170bcd76 Name": "Balaclava (Green)",
@@ -15005,15 +15023,51 @@
"67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)",
"67b72c64f753cf9f7a0a07aa ShortName": "Twitch",
"67b72c64f753cf9f7a0a07aa Description": "",
"67b877e7d2dc6a01d5059dd9 Name": "",
"67b877e7d2dc6a01d5059dd9 ShortName": "",
"67b877e7d2dc6a01d5059dd9 Description": "",
"67b877f796760fe84f086992 Name": "",
"67b877f796760fe84f086992 ShortName": "",
"67b877f796760fe84f086992 Description": "",
"67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)",
"67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)",
"67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.",
"67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)",
"67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)",
"67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.",
"67d0576f29f580ebc10efd08 Name": "TheAKGuy AK-50 .50 BMG sniper rifle",
"67d0576f29f580ebc10efd08 ShortName": "AK-50",
"67d0576f29f580ebc10efd08 Description": "The AK-50 semi-automatic anti-materiel rifle is an experimental first-of-a-kind project that adapts the Kalashnikov platform to use the .50 BMG cartridge. The AK-50 has outstanding penetration and range, making it a very powerful sniper rifle. This prototype was developed by a firearms manufacturer and YouTube blogger Brandon Herrera and co. as part of The AK Guy LTD.",
"67d3ed3271c17ff82e0a5b0b Name": "Key case",
"67d3ed3271c17ff82e0a5b0b ShortName": "Keys",
"67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.",
"67d416e19bd76ef20f0e743b Name": "AK-50 dust cover",
"67d416e19bd76ef20f0e743b ShortName": "AK-50 DC",
"67d416e19bd76ef20f0e743b Description": "A receiver dust cover with integrated Picatinny rail for the AK-50, allowing installation of optics. Manufactured by The AK Guy LTD.",
"67d4178bffb910d21f04720a Name": "AK-50 .50 BMG 24 inch barrel",
"67d4178bffb910d21f04720a ShortName": "AK-50 24\"",
"67d4178bffb910d21f04720a Description": "A 24 inch (612mm) barrel for the AK-50, manufactured by The AK Guy LTD.",
"67d417c023ec241bb70d4896 Name": "AK-50 M-LOK handguard with gas tube",
"67d417c023ec241bb70d4896 ShortName": "AK-50",
"67d417c023ec241bb70d4896 Description": "A handguard and gas tube for the AK-50. The handguard is equipped with an M-LOK standard interface for attaching additional equipment, and also has picatinny rail for mounting tactical devices. Manufactured by The AK Guy LTD.",
"67d41883f378a36c4706eeb7 Name": "AK-50 .50 BMG muzzle brake",
"67d41883f378a36c4706eeb7 ShortName": "AK-50 MB",
"67d41883f378a36c4706eeb7 Description": "A muzzle brake for the AK-50. Reduces recoil and muzzle rise. Manufactured by The AK Guy LTD.",
"67d418d0ffb910d21f04720e Name": "M82A1 .50 BMG 10-round magazine",
"67d418d0ffb910d21f04720e ShortName": "M82",
"67d418d0ffb910d21f04720e Description": "A 10-round .50 BMG magazine for the M82A1 sniper rifle, manufactured by Barrett Firearms.",
"67d41936f378a36c4706eeb9 Name": ".50 BMG HP",
"67d41936f378a36c4706eeb9 ShortName": "HP",
"67d41936f378a36c4706eeb9 Description": "A .50 BMG (12.7x99mm NATO) hollow point cartridge, developed in the USA. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact, however the hollow point bullet design does not allow it to penetrate armor effectively.",
"67dc212493ce32834b0fa446 Name": ".50 BMG M21",
"67dc212493ce32834b0fa446 ShortName": "M21",
"67dc212493ce32834b0fa446 Description": "A .50 BMG (12.7x99mm NATO) M21 \"headlight\" high-visibility tracer cartridge, developed in the USA and adopted in 1923 for Browning M2 machine guns, primarily designed to destroy light armored vehicles and neutralize enemy personnel behind light cover. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67dc255ee3028a8b120efc48 Name": ".50 BMG M33",
"67dc255ee3028a8b120efc48 ShortName": "M33",
"67dc255ee3028a8b120efc48 Description": "A .50 BMG (12.7x99mm NATO) M33 Ball cartridge, developed in the USA and adopted in 1923 for Browning M2 machine guns, primarily designed to destroy light armored vehicles and neutralize enemy personnel behind light cover. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67dc2648ba5b79876906a166 Name": ".50 BMG M903 SLAP",
"67dc2648ba5b79876906a166 ShortName": "M903",
"67dc2648ba5b79876906a166 Description": "A .50 BMG (12.7x99mm NATO) M903 SLAP (Saboted Light Armor Penetrator) cartridge. Created by placing a 7.62 armor-piercing bullet in a polymer container that separates after leaving the barrel. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67e183377c6c2011970f3149 Name": "Ariadne symbol key",
"67e183377c6c2011970f3149 ShortName": "Ariadne",
"67e183377c6c2011970f3149 Description": "Someone had made a barely visible mark on this key, resembling a ball of thread. Although, it could have simply been left by careless storage.",
@@ -15035,6 +15089,135 @@
"67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster",
"67f924b1b07831a6ef0ce317 ShortName": "Voroshka",
"67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.",
"683dacd53a9ebd9a650ce8a0 Name": "Honor",
"683dacd53a9ebd9a650ce8a0 ShortName": "Honor",
"683dacd53a9ebd9a650ce8a0 Description": "A great mannequin to help you visualize how the uniform would look on you if you decide to stand guard.",
"683dadc8675dbd613909cabb Name": "Jomoon",
"683dadc8675dbd613909cabb ShortName": "Jomoon",
"683dadc8675dbd613909cabb Description": "The creator of this mannequin was clearly into very bizarre things.",
"683db01a0dea92512e020550 Name": "T-pose",
"683db01a0dea92512e020550 ShortName": "T-pose",
"683db01a0dea92512e020550 Description": "A pose of a very dominance-asserting NPC.",
"683dc67e5e8c96c28e0ce6f8 Name": "Gilded ceiling",
"683dc67e5e8c96c28e0ce6f8 ShortName": "Gilded ceiling",
"683dc67e5e8c96c28e0ce6f8 Description": "A white ceiling with gold inlays. Someone went to a lot of trouble to paint these stripes.",
"683dc6aa57f38ea79c0073f1 Name": "White walls",
"683dc6aa57f38ea79c0073f1 ShortName": "White walls",
"683dc6aa57f38ea79c0073f1 Description": "White walls will make the Hideout look more spacious. Like an office.",
"683dc6c1baa42e2bb4024922 Name": "Gray wood",
"683dc6c1baa42e2bb4024922 ShortName": "Gray wood",
"683dc6c1baa42e2bb4024922 Description": "A nice light-colored floor. Helps keep the eyes free of strain. It also keeps the dust almost invisible.",
"683ed6aed885538c4102d8c8 Name": "AK-50 barrel",
"683ed6aed885538c4102d8c8 ShortName": "AK-50",
"683ed6aed885538c4102d8c8 Description": "A 24 inch barrel for the AK-50 sniper rifle.",
"683ed6c2e4b1dd7ec4069dc8 Name": "AK-50 dust cover",
"683ed6c2e4b1dd7ec4069dc8 ShortName": "AK-50",
"683ed6c2e4b1dd7ec4069dc8 Description": "A receiver dust cover for the AK-50 sniper rifle.",
"683ed6ccd9a096739b0c9228 Name": "AK-50 handguard with gas block",
"683ed6ccd9a096739b0c9228 ShortName": "AK-50",
"683ed6ccd9a096739b0c9228 Description": "An M-LOK handguard with railed gas block for the AK-50 sniper rifle.",
"68418091b5b0c9e4c60f0e7a Name": "Dogtag USEC",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"684180bc51bf8645f7067bc8 Name": "Dogtag BEAR",
"684180bc51bf8645f7067bc8 ShortName": "BEAR",
"684180bc51bf8645f7067bc8 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"684180ee9b6d80d840042e8a Name": "Dogtag USEC",
"684180ee9b6d80d840042e8a ShortName": "USEC",
"684180ee9b6d80d840042e8a Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"684181208d035f60230f63f9 Name": "Dogtag BEAR",
"684181208d035f60230f63f9 ShortName": "BEAR",
"684181208d035f60230f63f9 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"6841818c20f5c35b53017729 Name": "Dogtag (Prestige 3)",
"6841818c20f5c35b53017729 ShortName": "Dogtag",
"6841818c20f5c35b53017729 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"6841b11620f5c35b5301772b Name": "Dogtag (Prestige 4)",
"6841b11620f5c35b5301772b ShortName": "Dogtag",
"6841b11620f5c35b5301772b Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"6841b179322db20d190b4b99 Name": "Get a Life poster",
"6841b179322db20d190b4b99 ShortName": "Poster",
"6841b179322db20d190b4b99 Description": "The girl on the poster is definitely hinting at something. But you're stronger than her urging.",
"6841b1ff51bf8645f7067bca Name": "Get a Paw poster",
"6841b1ff51bf8645f7067bca ShortName": "Poster",
"6841b1ff51bf8645f7067bca Description": "We all need a loyal friend. Even if just in the arms of a 2d girl.",
"6841b2506c1fcc41ed0db319 Name": "Armband (Prestige 3)",
"6841b2506c1fcc41ed0db319 ShortName": "Prestige",
"6841b2506c1fcc41ed0db319 Description": "An armband for distinguished warriors.",
"6841b3463fcc417de40a6768 Name": "Armband (Prestige 4)",
"6841b3463fcc417de40a6768 ShortName": "Prestige",
"6841b3463fcc417de40a6768 Description": "You need to work really hard to earn this armband.",
"6841b3ab322db20d190b4b9b Name": "Armband (Prestige 5)",
"6841b3ab322db20d190b4b9b ShortName": "Prestige",
"6841b3ab322db20d190b4b9b Description": "An armband available only to a handful of people in Tarkov.",
"6841b6b674a3c16f5e03d653 Name": "PMC Origins figurine",
"6841b6b674a3c16f5e03d653 ShortName": "Origins",
"6841b6b674a3c16f5e03d653 Description": "This Tarko figurine depicts a very green PMC just setting foot in the city. There must be two more like this one out there somewhere.",
"6841c50c3fcc417de40a676a Name": "Crow target",
"6841c50c3fcc417de40a676a ShortName": "Crow target",
"6841c50c3fcc417de40a676a Description": "Crows are clever birds. But in image form, they certainly won't outsmart you. Unless?",
"6841c7963fcc417de40a676c Name": "Darts target",
"6841c7963fcc417de40a676c ShortName": "Darts target",
"6841c7963fcc417de40a676c Description": "A target for those who miss all the bar games.",
"6841c7f03fcc417de40a676e Name": "Rat target",
"6841c7f03fcc417de40a676e ShortName": "Rat target",
"6841c7f03fcc417de40a676e Description": "A target for sneaky rodent hunters.",
"684696e8199c6a77dc0f9bc8 Name": "Rob",
"684696e8199c6a77dc0f9bc8 ShortName": "Rob",
"684696e8199c6a77dc0f9bc8 Description": "A voice of the PMC USEC operator who came to Tarkov from far away. He is strong, experienced, and ready to fight.",
"6846990ed5d969efe3078408 Name": "Vitaly",
"6846990ed5d969efe3078408 ShortName": "Vitaly",
"6846990ed5d969efe3078408 Description": "A voice of the PMC BEAR operator who has seen this life through and is only looking for one last thing.",
"6847e3010f5df094fb072599 Name": "bear_upper_g99",
"6847e3010f5df094fb072599 ShortName": "",
"6847e3010f5df094fb072599 Description": "",
"6847e338c9626d92b40d2789 Name": "",
"6847e338c9626d92b40d2789 ShortName": "",
"6847e338c9626d92b40d2789 Description": "",
"6847e3cc13183100990dd1c8 Name": "",
"6847e3cc13183100990dd1c8 ShortName": "",
"6847e3cc13183100990dd1c8 Description": "",
"6847e663f43abfdda205835a Name": "Blue Hawaii shirt",
"6847e663f43abfdda205835a ShortName": "Hawaii shirt",
"6847e663f43abfdda205835a Description": "Hawaii shirt",
"6847e76f3f4cd20a97097a93 Name": "Green Hawaii shirt",
"6847e76f3f4cd20a97097a93 ShortName": "Hawaii shirt",
"6847e76f3f4cd20a97097a93 Description": "Hawaii shirt",
"6847e7ec93e9ca7c5b08fcea Name": "",
"6847e7ec93e9ca7c5b08fcea ShortName": "",
"6847e7ec93e9ca7c5b08fcea Description": "",
"685d07f8c18489365003668c Name": "bear_upper_g99",
"685d07f8c18489365003668c ShortName": "",
"685d07f8c18489365003668c Description": "",
"685d0819f16ea024b00ca192 Name": "",
"685d0819f16ea024b00ca192 ShortName": "",
"685d0819f16ea024b00ca192 Description": "",
"685d0844a4c03ac885004b90 Name": "",
"685d0844a4c03ac885004b90 ShortName": "",
"685d0844a4c03ac885004b90 Description": "",
"685d087ae21676b134054474 Name": "",
"685d087ae21676b134054474 ShortName": "",
"685d087ae21676b134054474 Description": "",
"685d08a741b02568210760ca Name": "",
"685d08a741b02568210760ca ShortName": "",
"685d08a741b02568210760ca Description": "",
"685d08ebc18489365003668e Name": "",
"685d08ebc18489365003668e ShortName": "",
"685d08ebc18489365003668e Description": "",
"685d092aed4e253164064e05 Name": "USEC Day Off",
"685d092aed4e253164064e05 ShortName": "Tactical shorts",
"685d092aed4e253164064e05 Description": "Tactical shorts",
"685d0967cb2cba9e8f02e7b3 Name": "BEAR Vacation",
"685d0967cb2cba9e8f02e7b3 ShortName": "Tactical shorts",
"685d0967cb2cba9e8f02e7b3 Description": "Tactical shorts",
"685d097e97aa09c6b60df9f5 Name": "BEAR Vacation",
"685d097e97aa09c6b60df9f5 ShortName": "Hawaii shirt",
"685d097e97aa09c6b60df9f5 Description": "Hawaii shirt",
"685d09b4029bc4c1190e819d Name": "USEC Day Off",
"685d09b4029bc4c1190e819d ShortName": "Hawaii shirt",
"685d09b4029bc4c1190e819d Description": "Hawaii shirt",
"685ebb9dd8500c455802e9c8 Name": "Grenadier t-shirt",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Merch t-shirt",
" V-ex_light": "Road to Military Base V-Ex",
" Voip/DisabledForOffline": "VoIP is unavailable in the offline mode",
" kg": " kg",
@@ -15203,6 +15386,7 @@
"AVAILABLE ON LEVEL {0}": "AVAILABLE AT LEVEL {0}",
"Abort": "ABORT",
"About half": "About half",
"Accept (Y)": "ACCEPT (Y)",
"AcceptFriendsRequest": "Accept friend request",
"AcceptInvitation": "Accept invite",
"AcceptScreen/ServerSettingsButton": "Raid settings",
@@ -15301,6 +15485,7 @@
"Arena/Armory/ItemNotAvailabeToUnlockErrorHeader": "Unlock unavailable",
"Arena/Armory/ItemNotFoundErrorDescription": "This item was not found",
"Arena/Armory/ItemNotFoundErrorHeader": "Item not found",
"Arena/Armory/LevelReward/lockedState": "Locked",
"Arena/Armory/LevelReward/readyToUlockState": "Ready",
"Arena/Armory/LevelReward/unlockedState": "Ready",
"Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.",
@@ -15344,6 +15529,7 @@
"Arena/CustomGames/Create/Maps": "Locations",
"Arena/CustomGames/Create/Modes": "Modes",
"Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling",
"Arena/CustomGames/Create/StartScoresEnabled": "Set match score",
"Arena/CustomGames/Create/SubModes": "Submodes",
"Arena/CustomGames/Create/TournamentMode": "Tournament mode",
"Arena/CustomGames/Create/TournamentSettings": "Tournament settings",
@@ -15444,6 +15630,8 @@
"Arena/Presets/Tooltips/Medicine": "Medicine",
"Arena/Presets/Tooltips/Other": "Other",
"Arena/Presets/Tooltips/Weapon": "Weapon",
"Arena/RefillContainer": "Equipment refill container",
"Arena/RefillContainer/RefillComplete": "Equipment refilled!",
"Arena/Rematching": "Returning to matching with high priority",
"Arena/Rematching/NoServer": "Due to technical reasons, the server has not been found. Returning to game search.",
"Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.",
@@ -15499,6 +15687,7 @@
"Arena/UI/Disband-Game/Title": "GAME DISBAND",
"Arena/UI/Excluded-from-tre-group": "- You will be kicked from your group",
"Arena/UI/Game-Found": "Game found",
"Arena/UI/LEAVE (N)": "LEAVE (N)",
"Arena/UI/Leave": "LEAVE",
"Arena/UI/Leave-Game/Text1": "Are you sure you want to leave the game?",
"Arena/UI/Leave-Game/Text2": "Server will be disbanded",
@@ -15513,6 +15702,7 @@
"Arena/UI/Match_leaving_permitted_header": "You can leave this match without penalty.",
"Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:",
"Arena/UI/Return": "RETURN",
"Arena/UI/Return (Y)": "RETURN (Y)",
"Arena/UI/Return-to-match": "RETURN TO MATCH",
"Arena/UI/Selection/Blocked": "Preset taken",
"Arena/UI/Waiting": "Waiting...",
@@ -15561,6 +15751,10 @@
"Arena/Widgets/pickup object": "Pick up the device",
"Arena/Widgets/prepare to fight": "Prepare to fight",
"Arena/Widgets/ranked": "Ranked mode",
"Arena/Widgets/refill container blocked": "Container locked",
"Arena/Widgets/refill container cooldown": "Unavailable",
"Arena/Widgets/refill container ready": "Refill equipment",
"Arena/Widgets/refill container refilling": "Refilling",
"Arena/Widgets/round lose": "Round lost",
"Arena/Widgets/round start in": "Round starts in",
"Arena/Widgets/round win": "Round won",
@@ -15768,6 +15962,7 @@
"BTR": "BTR",
"BULLET SPEED": "BULLET VELOCITY",
"BUY": "BUY",
"BUY (Y)": "BUY (Y)",
"BUY PARTS": "BUY PARTS",
"Back": "BACK",
"Backpack": "Backpack",
@@ -15850,6 +16045,7 @@
"CIRCLEOFCULTISTS": "Cultist Circle",
"CLEAR": "CLEAR",
"CLONE": "Duplicate",
"CLOSE (Y)": "CLOSE (Y)",
"CLOTHING UNLOCK": "CLOTHING UNLOCK",
"COMETOME": "COME TO ME",
"COMMAND": "COMMAND",
@@ -15899,6 +16095,7 @@
"Can't open context menu while searching": "Can't open context menu while searching",
"Can't place beacon here": "Can't place a beacon here",
"Cancel": "Cancel",
"Cancel (N)": "CANCEL (N)",
"CancelInvite": "Cancel invite",
"CancelLookingForGroup": "Stop looking for a group",
"Captcha counter ended": "You failed the verification",
@@ -15991,6 +16188,7 @@
"ClothingPanel/InternalObtain": "Trader purchase conditions:",
"ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:",
"ClothingPanel/PlayerLevel": "Player\nLevel:",
"ClothingPanel/PrestigeLevel": "Prestige\nLevel:",
"ClothingPanel/RequiredAchievements": "Achievement:",
"ClothingPanel/RequiredPayment": "Required\nPayment:",
"ClothingPanel/RequiredQuest": "Completed\nTask:",
@@ -16533,6 +16731,7 @@
"ERewardType/CustomizationDirect": "Customization",
"ERewardType/ExtraDailyQuest": "Task",
"ERewardType/Skill/Description": "Permanently increases {0} ({1})",
"ERewardType/Stub": "Unique ID",
"ESSAOMode/ColoredHighestQuality": "colored ultra",
"ESSAOMode/FastPerformance": "high performance",
"ESSAOMode/FastestPerformance": "max performance",
@@ -16619,7 +16818,7 @@
"EXITLOCATED": "EXIT LOCATED",
"EXPLOSION DELAY": "EXPLOSION DELAY",
"EXPLOSION DISTANCE": "EXPLOSION RADIUS",
"EYES PROTECTION": "EYES PROTECTION AGAINST FLASHBANG",
"EYES PROTECTION": "FLASH PROTECTION",
"Earpiece": "Earpiece",
"Ears": "Ears",
"East Gate": "Scav Bunker",
@@ -16955,9 +17154,11 @@
"Hideout/Handover window/Caption/All weapons": "All weapons",
"Hideout/Handover window/Message/Items in stash selected:": "Items in stash selected:",
"Hideout/Mannequin/Pose/boxing": "Fist Fighter",
"Hideout/Mannequin/Pose/democracy": "Honor",
"Hideout/Mannequin/Pose/fingerguns": "Cowboy",
"Hideout/Mannequin/Pose/fingerguns2": "Sharpshooter",
"Hideout/Mannequin/Pose/gopnik": "Slav Squat",
"Hideout/Mannequin/Pose/jojo": "Jomoon",
"Hideout/Mannequin/Pose/muscles_flex": "Feel My Gains",
"Hideout/Mannequin/Pose/spreadinghands": "Well What Is It",
"Hideout/Mannequin/Pose/standing": "Briefing",
@@ -17089,6 +17290,7 @@
"Inventory Errors/Not examined target install": "Cannot apply to unexamined item",
"Inventory Errors/Not moddable in raid": "Cannot attach while in raid",
"Inventory Errors/Not moddable without multitool": "Multitool is required to attach",
"Inventory Errors/OverMaxBackbackDeep": "Too many identical items stacked consecutively (max {0})",
"Inventory Errors/Putting unlootable": "This slot is unlootable",
"Inventory Errors/Putting unlootable ": "This slot is unlootable",
"Inventory Errors/Same place": "You can't transfer the item to the same place",
@@ -17805,6 +18007,7 @@
"Player {0} has left the group": "Player {0} left the group",
"Player {0} invite you to the group": "Player {0} invites you to the group",
"Player {0} was invited to your group": "Player {0} was invited to your group",
"PlayerArenaRefill": "Refill",
"PlayerEquipmentWindow/Caption{0}": "Equipment preview: {0}",
"PlayerProfile/Unavailable": "PMC profile hidden",
"Players spawn": "Players spawn",
@@ -18275,6 +18478,7 @@
"SAN_TRANSIT_1_COND": " ",
"SAN_TRANSIT_1_DESC": "Transit to Streets of Tarkov",
"SAVAGE": "SCAV",
"SAVE (Y)": "SAVE (Y)",
"SAVE AS ...": "SAVE AS...",
"SAVE AS...": "Save as...",
"SCAV LOOT TRANSFER": "SCAV LOOT TRANSFER",
@@ -18955,7 +19159,7 @@
"Transit/AccessNotGranted": "Access denied",
"Transit/InactivePoint": "Transit unavailable",
"Transit/Interaction": "Interact",
"Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition",
"Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone. Hold \"interact\" to activate the transition.",
"Transition in ": "Transition in ",
"Transition in {0:F1}": "Transition in {0:F1}",
"Tremor": "Tremor",
@@ -19151,6 +19355,8 @@
"UI/Quest/Reward/ItemCaption": "Item",
"UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}",
"UI/Quest/Reward/QuestCaption": "Task",
"UI/Quest/Reward/StubCaption": "Prestige icon",
"UI/Quest/Reward/StubDescription": "Now you can show everyone how cool you are.",
"UI/Quest/Reward/WebPromoCode Name": "Escape from Tarkov: Arena free trial",
"UI/Quests/Conditions/PrestigeLevel{0}": "Prestige level: {0}",
"UI/Quests/Conditions/ProfileLevel{0}": "Character level: {0}",
@@ -19686,6 +19892,7 @@
"arena/customGames/create/skillLvl": "Player skills level:",
"arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}",
"arena/customGames/notify/GameRemoved": "Room has been disbanded",
"arena/customGames/startscoresvalueteam": "Team score",
"arena/customgames/errors/notification/gamealreadystarted": "Game has already started",
"arena/customgames/popup/refreshdailyquest": "Replace operational task?",
"arena/customgames/popups/attemptscountleft:": "Attempts left:",
@@ -20169,7 +20376,7 @@
"hideout_area_11_stage_2_description": "An advanced intelligence center equipped with a laptop, which has more working space due to an additional table. Thanks to Mechanic, it is connected to an isolated computer network, which remained intact after the EMP strike and isolation of Tarkov.",
"hideout_area_11_stage_3_description": "A full-fledged intelligence center equipped with computer equipment, radio devices and analytical tools. The escape from Tarkov was never so close.",
"hideout_area_12_name": "Shooting Range",
"hideout_area_12_stage_1_description": "A specially equipped place for shooting firearms. For the convenience of evaluating the results of shooting at the shooting range, metal growth targets were installed for the close-range, and paper ones for the distant targets.",
"hideout_area_12_stage_1_description": "A specially equipped place for shooting firearms. For the convenience of evaluating the shooting results, the range is equipped with metal silhouette popper targets for the close range, and paper targets for the long range.",
"hideout_area_12_stage_2_description": "An improved range with installed ceiling-mounted target rails with three speed levels.",
"hideout_area_12_stage_3_description": "An advanced shooting range with installed popper targets and a laptop for configuration. Also allows to start training with random rail targets and poppers, scores are displayed on the laptop monitor.",
"hideout_area_13_name": "Library",
@@ -20229,9 +20436,9 @@
"hideout_area_2_stage_2_description": "A basic bathroom with a wooden outhouse type toilet and a washstand, connected to the water supply system. All this raises the level of cleanliness and hygiene in the Hideout.",
"hideout_area_2_stage_3_description": "An advanced bathroom with a dry closet, a shower and a trash can. Everything you need is connected to the water supply system and provides the most affordable level of personal hygiene.",
"hideout_area_3_name": "Stash",
"hideout_area_3_stage_1_description": "Small stash (10x28)",
"hideout_area_3_stage_2_description": "Medium stash (10x38)",
"hideout_area_3_stage_3_description": "Large stash (10x48)",
"hideout_area_3_stage_1_description": "Small stash (10x30)",
"hideout_area_3_stage_2_description": "Medium stash (10x40)",
"hideout_area_3_stage_3_description": "Large stash (10x50)",
"hideout_area_3_stage_4_description": "Maximum size stash (10x68)",
"hideout_area_4_name": "Generator",
"hideout_area_4_stage_1_description": "A simple fuel generator that can provide basic Hideout equipment with electricity. The heart of your shelter. Fuel is needed to maintain the working power grid.",
@@ -20487,7 +20694,7 @@
"ragfair/Trader will be unlocked with the quest completion": "Trader will be unlocked with the task completion",
"ragfair/Unable to sell the item that contains": "",
"ragfair/Unable to sell the item that contains {0}": "Unable to sell the item that contains \"{0}\"",
"ragfair/Unlocked at character LVL {0}": "The ability to create offers as well as to see and buy other players' goods will be unlocked on level {0}.",
"ragfair/Unlocked at character LVL {0}": "The ability to create offers as well as to see and buy other players' goods is currently unavailable.",
"ragfair/W-LIST": "W-LIST",
"ragfair/You are temporarily banned from flea market": "You are temporarily banned from the Flea Market",
"ragfair/You cannot place non-empty container at ragfair": "You can't sell non-empty container at the Flea Market",
@@ -21045,7 +21252,7 @@
"6441004f8ab20b218807f14b Name": "Chop Shop",
"6441004f8ab20b218807f14b Description": "A car chop shop on the outskirts of Tarkov. It used to be a place where stolen cars were dismantled for parts, but now it's used to host firefights.",
"64b7d7f23d81c8a9ee03ac27 Name": "Block",
"64b7d7f23d81c8a9ee03ac27 Description": "A courtyard in one of residential neighborhoods, equipped by the Host for Arena fights.",
"64b7d7f23d81c8a9ee03ac27 Description": "A courtyard in one of the residential neighborhoods, re-equipped for Arena fights.",
"653e6760052c01c1c805532f Name": "Ground Zero",
"653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.",
"65b8d6f5cdde2479cb2a3125 Name": "Ground Zero",
@@ -21053,7 +21260,7 @@
"662b728d328cb632bd0c6caf Name": "SkyBridge",
"662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.",
"6690e7e7dc976e4c780336b1 Name": "Fort",
"6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights",
"6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights.",
"66ba059e89f905cb2208bd58 Name": "",
"66ba059e89f905cb2208bd58 Description": "",
"6733700029c367a3d40b02af Name": "The Labyrinth",
@@ -21880,6 +22087,8 @@
"67c870e5da2a209b2a0ed126": "",
"67c87145e52edc36aa069ae6": "",
"67c871b6e0b64a07890a2f36": "",
"682dedb734c3c29e5102bbbe": "",
"68347d3e93833d37d307361d": "",
"5936d90786f7742b1420ba5b name": "Debut",
"5936d90786f7742b1420ba5b description": "Hello there, soldier. I got a job that's a little too easy for my guys. But you'll do fine. Hey, don't get pissy, I don't know you that well yet to give you a normal job!\n\nThere's a lot of bandit scum roaming the streets. They don't bother me much, but they're still a nuisance. Calm down, say, five of them, and get a couple of MP-133 shotguns off them. I think that'll be enough for you. Dismissed, soldier!",
"5936d90786f7742b1420ba5b failMessageText": "",
@@ -28916,7 +29125,7 @@
"67f3eab9a33cd296b20ee695 name": "Staff Shortage",
"67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.",
"67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!",
"67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we at least have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.",
"67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.",
"67f71386222d15f53e5be7ee": "Locate and neutralize Partisan",
"67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives",
"67f3eab9a33cd296b20ee695 acceptPlayerMessage": "",
@@ -28930,6 +29139,89 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "Hobby Club",
"684009026ceedc792c09b2a7 description": "Excellent, I've been waiting for you. I have a friend in the States, a very skilled weapons professional. He's obsessed with Russian firearms, and for several years now he's been working on his own project, called the AK-50. I don't think you've ever seen an AK that fires a .50 cal... The NATO one, I mean.\n\nSo the project is finally finished, and he sent me a test sample. Such a heavy and specialized rifle is too risky to be imported in one piece, so we broke the package into several parts. Well guess what, things in Tarkov didn't go according to plan. Shocker, I know.\n\nThe main body comes as one part, and it was seized in Atlantic waters. However I have the blueprint, so I need you to use it to build a new one for me. It certainly won't be easy in our circumstances. But at least you'll still have a copy of the blueprint for later use.\n\nThe handguard comes with the gas tube, and it was somehow intercepted by Skier's thugs. This part took two years to assemble, fit, and test, and the cost of development and prototypes has already gone over a couple million.\n\nThe dust cover was intercepted at one of the checkpoints already in Tarkov. I don't know which one, you'll have to search through all of them. But the barrel is definitely at the military base. Glukhar's personally organized an ambush on my convoy, and apparently knew about this shipment. You'll have to fight for it, or hope for some divine intervention.\n\nWhen you've collected all the parts, drop them off at the transmission tower shack near the gas station at the customs district. I'll ask my crew to deliver them from there, and after that I'll be able to manufacture the parts myself. And, of course, I won't forget your help.",
"684009026ceedc792c09b2a7 failMessageText": "",
"684009026ceedc792c09b2a7 successMessageText": "You got everything? This is definitely something to celebrate... There's no other rifle like it not just in Tarkov, but in the whole world! This is what happens when a man with skills takes his dream seriously.\n\nYou already have the blueprint with the main rifle body, and you can get the missing parts from me in the future. And yes, drop by my place after you've tested this beast. I plan to send word to my friend and tell him what his creation can do in the field.",
"68406f61dee69e488380df08": "Assemble and hand over the main part of AK-50",
"68406fd3b614b3db64e6097d": "Locate and obtain the AK-50 barrel on Reserve",
"68406fe240fcc2eea7fbe150": "Hand over the found part",
"684070a1a550c194cf2f833a": "Locate and obtain the AK-50 dust cover at one of Tarkov's security checkpoints",
"684070bb065afe8c5455ad28": "Hand over the found part",
"684070d42d471ff3ba44ef9f": "Obtain and hand over the AK-50 handguard seized by Skier",
"6840711071516aad97bd9156": "Locate Glukhar's workshop on Reserve",
"6840714469caa738cc1225c3": "Locate the checkpoint with seized cargo",
"685e95c44b14e68996ad6590": "Stash the AK-50 body at the specified spot on Customs",
"685e95d28ba62d57a3235675": "Stash the AK-50 handguard at the specified spot on Customs",
"685e95def338135da83ff978": "Stash the AK-50 barrel at the specified spot on Customs",
"685e95f0ac5f975749f6c1f3": "Stash the AK-50 dust cover at the specified spot on Customs",
"685e97f9892281cf7a89f39c": "Build the AK-50 body",
"684009026ceedc792c09b2a7 acceptPlayerMessage": "",
"684009026ceedc792c09b2a7 declinePlayerMessage": "",
"684009026ceedc792c09b2a7 completePlayerMessage": "",
"68400926706e0a55e90b0007 name": "Fair Price - Part 1",
"68400926706e0a55e90b0007 description": "Hello mate. People say you're looking for something, and that you and Mechanic desperately need this fuckin' piece of junk. What, thought I wouldn't find out? I've ran through your little project, so you two aren't gonna bullshit me with the price.\n\nIf you really want it, you'll have to pay the proper price. Twenty... No, fifty grand! And no bargaining. Your little handguard is already locked up in a safe place, you won't find it on your own. So, ready to pay for your project or not?",
"68400926706e0a55e90b0007 failMessageText": "",
"68400926706e0a55e90b0007 successMessageText": "Fucking splendid! Mechanic's a fucking gun nut, I get it, but I sure didn't expect YOU to pay that kind of money for some bloody handguard. Whatever, I don't care. If you two want it, you can go play in your little workshop. This oversized rubbish won't even fit any AK!\n\nI'll tell my boys, they'll drop your part off at the transfer point.",
"684180b0b22d582a57c5a8d7": "Hand over EUR",
"68400926706e0a55e90b0007 acceptPlayerMessage": "",
"68400926706e0a55e90b0007 declinePlayerMessage": "",
"68400926706e0a55e90b0007 completePlayerMessage": "",
"68400953506db3b4db0700e7 name": "Fair Price - Part 2",
"68400953506db3b4db0700e7 description": "Don't regret your investment yet? Let me give you an advice, nerds like Mechanic are the ones who pull off the most rotten schemes! He'll get his profit, and you won't even realise you've been screwed. All right, quit bitching! I'm telling you the honest bloody truth.\n\nIf you're still confident about this \"project\", you can collect the handguard at the abandoned sawmill near the village in the nature reserve, there's a UN post not far from there. The lads have already dropped it off. But I wouldn't stay there too long, who knows what other scum's there. If someone steals it before you, don't come to me with any claims!",
"68400953506db3b4db0700e7 failMessageText": "",
"68400953506db3b4db0700e7 successMessageText": "What, you got it already? Well done mate, you're a good little mule. When you get tired of playing gunsmith with Mechanic, you know who to go to. Oh, and, uh, if you can get the part back, that'd be sweet. Maybe we'll make some business with it, because I think I found really valuable info on this overseas AK...",
"6841814c20c9a6c68800ab79": "Locate and obtain the AK-50 handguard at the old sawmill on Woods",
"6841815b3d5e6b08d1f6e474": "Locate the stash spot",
"684181808b21759f04e1c4ee": "Complete the task Hobby Club",
"68400953506db3b4db0700e7 acceptPlayerMessage": "",
"68400953506db3b4db0700e7 declinePlayerMessage": "",
"68400953506db3b4db0700e7 completePlayerMessage": "",
"6848100b00afffa81f09e365 name": "New Beginning",
"6848100b00afffa81f09e365 description": "Hello my brother! So how's it hanging? Not bored yet? Alright alright, just messing with you. I already figured you know how this one goes.\n\nYou really can't fall off the influential guys' list, dude. At the very least, it's gonna plummet my rep. It's not gonna look good for me if my candidate falls off the list on the third task, so don't get too comfortable.\n\nSo, like I said last time, something big's cooking. And you and I need to keep our fingers on the pulse.\n\nHere's a list of what we need to bring this time. Yeah, it's longer this time. Anyway, you're a smart guy, you'll figure it out.",
"6848100b00afffa81f09e365 failMessageText": "",
"6848100b00afffa81f09e365 successMessageText": "Excellent. Never letting me down, brother. My credibility is still there, and yours is on the rise. Perfect outcome, isn't it?",
"6848100b00afffa81f09e369": "Eliminate PMC operatives",
"6848100b00afffa81f09e36b": "Use the transit from The Lab to Streets of Tarkov",
"6848100b00afffa81f09e36d": "Hand over the found in raid item: BEAR operative figurine",
"6848100b00afffa81f09e36e": "Hand over the found in raid item: Politician Mutkevich figurine",
"6848100b00afffa81f09e36f": "Hand over the found in raid item: Killa figurine",
"6848100b00afffa81f09e370": "Hand over the found in raid item: Reshala figurine",
"6848100b00afffa81f09e371": "Hand over the found in raid item: Ryzhy figurine",
"6848100b00afffa81f09e372": "Hand over the found in raid item: Scav figurine",
"6848100b00afffa81f09e373": "Hand over the found in raid item: Tagilla figurine",
"6848100b00afffa81f09e374": "Hand over the found in raid item: USEC operative figurine",
"6848100b00afffa81f09e375": "Hand over the found in raid item: Cultist figurine",
"6848100b00afffa81f09e376": "Hand over the found in raid item: Den figurine",
"6848116061809d65b8503617": "Survive and extract from Streets of Tarkov",
"684811fa366152006bebe08b": "Hand over any of the limited Labyrinth figurines",
"684812156189183883f13947": "Eliminate Raiders",
"6848100b00afffa81f09e365 acceptPlayerMessage": "",
"6848100b00afffa81f09e365 declinePlayerMessage": "",
"6848100b00afffa81f09e365 completePlayerMessage": "",
"68481881f43abfdda2058369 name": "New Beginning",
"68481881f43abfdda2058369 description": "Always good to see you on my doorstep! Not bored, are you? What, am I repeating myself again? Hey come on, it's just a little joke!\n\nAlright, down to business. The lists are constantly being updated, and you know our reputations are on the line. You know that you're not going anywhere in Tarkov without it. So we have to get this job done. I've just been handed the new list...\n\nWhat, you've already done some of these? Cool, easier for you. You gotta look on the bright side, brother! Otherwise, you're not gonna live long. Go ahead, show all those list makers how tough you are!",
"68481881f43abfdda2058369 failMessageText": "",
"68481881f43abfdda2058369 successMessageText": "Nice job, brother! Could have been quicker, but there was nothing in the task about time, so let's just ignore it.",
"68481881f43abfdda205836d": "Eliminate PMC operatives",
"68481881f43abfdda205836f": "Use the transit from The Lab to Streets of Tarkov",
"68481881f43abfdda2058371": "Hand over the found in raid item: BEAR operative figurine",
"68481881f43abfdda2058372": "Hand over the found in raid item: Politician Mutkevich figurine",
"68481881f43abfdda2058373": "Hand over the found in raid item: Killa figurine",
"68481881f43abfdda2058374": "Hand over the found in raid item: Reshala figurine",
"68481881f43abfdda2058375": "Hand over the found in raid item: Ryzhy figurine",
"68481881f43abfdda2058376": "Hand over the found in raid item: Scav figurine",
"68481881f43abfdda2058377": "Hand over the found in raid item: Tagilla figurine",
"68481881f43abfdda2058378": "Hand over the found in raid item: USEC operative figurine",
"68481881f43abfdda2058379": "Hand over the found in raid item: Cultist figurine",
"68481881f43abfdda205837a": "Hand over the found in raid item: Den figurine",
"68481a8eda10b760b3b1a73f": "Eliminate Rogues",
"68483a05801f8d9e40ac05b1": "Use the transit from Streets of Tarkov to Interchange",
"68483a48dcb8688e2454ab7b": "Survive and extract from Interchange",
"68486a0eda4828c0772e337b": "Hand over any of the found in raid limited Labyrinth figurines",
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.",
@@ -29548,7 +29840,7 @@
"6512f1e3be73cc7f07358ed5 description": "Neutralize Killa for the first time while playing as a PMC",
"6512f1e3be73cc7f07358ed5 successMessage": "",
"6513eb6e0dc723592b0f9095 name": "Call Your Brother",
"6513eb6e0dc723592b0f9095 description": "Eliminate Tagilla for the first time while playing as a PMC",
"6513eb6e0dc723592b0f9095 description": "Neutralize Tagilla for the first time while playing as a PMC",
"6513eb6e0dc723592b0f9095 successMessage": "",
"6513ed89cf2f1c285e606068 name": "Silence of the Sawmill",
"6513ed89cf2f1c285e606068 description": "Neutralize Shturman for the first time while playing as a PMC",
@@ -29691,7 +29983,7 @@
"6527ee4a647c29201011defe description": "Eliminate a Scav while playing as a Scav",
"6527ee4a647c29201011defe successMessage": "",
"6529097eccf6aa5f8737b3d0 name": "Snowball",
"6529097eccf6aa5f8737b3d0 description": "Eliminate every Boss without dying while playing as a PMC",
"6529097eccf6aa5f8737b3d0 description": "Neutralize every Boss without dying while playing as a PMC",
"6529097eccf6aa5f8737b3d0 successMessage": "",
"652909ac342bdd14e0bcb1bb": "Locate and neutralize Kaban",
"652909cd3f9e480e9d1a3489": "Locate and neutralize Reshala",
@@ -29710,7 +30002,7 @@
"655b49bc91aa9e07687ae47c description": "Neutralize Kollontay for the first time while playing as a PMC",
"655b49bc91aa9e07687ae47c successMessage": "",
"655b4a576689c676ce57acb6 name": "True Crime",
"655b4a576689c676ce57acb6 description": "Eliminate Kollontay 15 times while playing as a PMC",
"655b4a576689c676ce57acb6 description": "Neutralize Kollontay 15 times while playing as a PMC",
"655b4a576689c676ce57acb6 successMessage": "",
"65606e084c9e9c2c190bd25f name": "",
"65606e084c9e9c2c190bd25f description": "",
@@ -30049,6 +30341,12 @@
"67fce0c2f18dc20eae02240b name": "Star Called Sun",
"67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher",
"67fce0c2f18dc20eae02240b successMessage": "",
"6842c25bd02bc07d70054019 name": "Keeping Up the Pace",
"6842c25bd02bc07d70054019 description": "Earn the Prestige level 3",
"6842c25bd02bc07d70054019 successMessage": "",
"6842c27a38482d35ac0bd847 name": "Higher and Higher",
"6842c27a38482d35ac0bd847 description": "Earn the Prestige level 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -30311,9 +30609,28 @@
"67adb4843fec17bf3ea9452e name": "Minotaur's Lair",
"67adb4843fec17bf3ea9452e description": "This ceiling is nothing sophisticated. The Minotaur doesn't need anything like that.",
"67adb48fd05a78f5a5fc5260": "Can only be obtained during special events",
"6841c93d40f98448eafbe5fe name": "Darts target",
"6841c93d40f98448eafbe5fe description": "A target for those who miss all the bar games.",
"6841cb6ad7c6601d14c49c8d": "Reach Prestige level 4",
"6841ca25a3202eb499cdee19 name": "Rat target",
"6841ca25a3202eb499cdee19 description": "A target for sneaky rodent hunters.",
"6841cb482aa4735bc953dccb": "Reach Prestige level 5",
"6841caa796e886f328e69606 name": "Crow target",
"6841caa796e886f328e69606 description": "Crows are clever birds. But in image form, they certainly won't outsmart you. Unless?",
"6841cbabc58389310416c098": "Reach Prestige level 3",
"6841cc541c407f8aa0e4f62b name": "White walls",
"6841cc541c407f8aa0e4f62b description": "White walls will make the Hideout look more spacious. Like an office.",
"6841cc7af143c60fc8dfbd26": "Reach Prestige level 5",
"6841ccf5cf47eb290b9fb24e name": "Gray wood",
"6841ccf5cf47eb290b9fb24e description": "A nice light-colored floor. Helps keep the eyes free of strain. It also keeps the dust almost invisible.",
"6841cd092c726cdf75b45770": "Reach Prestige level 4",
"6841cdb93de393b52dd49865 name": "Gilded ceiling",
"6841cdb93de393b52dd49865 description": "A white ceiling with gold inlays. Someone went to a lot of trouble to paint these stripes.",
"6841cdc772532c1991fe1615": "Reach Prestige level 6",
"672df12f97f0469cea52f55e name": "Prestige 1",
"675d7242b85061aa2017c341": "Complete the task You've Got Mail",
"672df4281ab8d9c8849a0c88 name": "Prestige 2",
"675d71d1bbb25a353d697179": "Reach Vitality skill level 20",
"6760a03623016948ee282ea8 name": ""
}
"683da91d6f472cfa738c52f2 name": "",
"6842f121000d98ce33b9a60f name": ""
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -7418,6 +7418,12 @@
"5fc613c80b735e7b024c76e2 Name": "",
"5fc613c80b735e7b024c76e2 ShortName": "",
"5fc613c80b735e7b024c76e2 Description": "",
"5fc614390b735e7b024c76e6 Name": "",
"5fc614390b735e7b024c76e6 ShortName": "",
"5fc614390b735e7b024c76e6 Description": "",
"5fc6144b0b735e7b024c76e7 Name": "",
"5fc6144b0b735e7b024c76e7 ShortName": "",
"5fc6144b0b735e7b024c76e7 Description": "",
"5fc614da00efd824885865c2 Name": "Sergei",
"5fc614da00efd824885865c2 ShortName": "Sergei",
"5fc614da00efd824885865c2 Description": "Sergei",
@@ -7427,6 +7433,9 @@
"5fc615110b735e7b024c76ea Name": "Josh",
"5fc615110b735e7b024c76ea ShortName": "Josh",
"5fc615110b735e7b024c76ea Description": "Josh",
"5fc6155b0b735e7b024c76ec Name": "",
"5fc6155b0b735e7b024c76ec ShortName": "",
"5fc6155b0b735e7b024c76ec Description": "",
"5fc64ea372b0dd78d51159dc Name": "Cultist knife",
"5fc64ea372b0dd78d51159dc ShortName": "Kés",
"5fc64ea372b0dd78d51159dc Description": "A knife of a strange shape and with strange signs, taken from the cultists. Seems like it is used as a ritual knife, but apparently it's not limited to this use. It has technological changes in the design intended for the use of toxic substances - it's better not to touch the blade.",
@@ -8138,6 +8147,9 @@
"617aa4dd8166f034d57de9c5 Name": "M18 smoke grenade (Green)",
"617aa4dd8166f034d57de9c5 ShortName": "M18",
"617aa4dd8166f034d57de9c5 Description": "The M18 smoke grenade made in the USA. Used in the US Army since the Second World War. The smoke is green-colored.",
"617be9e4e02b3b3fa50fa8f2 Name": "",
"617be9e4e02b3b3fa50fa8f2 ShortName": "",
"617be9e4e02b3b3fa50fa8f2 Description": "",
"617fd91e5539a84ec44ce155 Name": "RGN hand grenade",
"617fd91e5539a84ec44ce155 ShortName": "RGN",
"617fd91e5539a84ec44ce155 Description": "RGN (Ruchnaya Granata Nastupatel'naya - \"Offensive Hand Grenade\") is an offensive anti-personnel fragmentation hand grenade of impact action.",
@@ -9980,6 +9992,9 @@
"6464d870bb2c580352070cc4 Name": "PK bipod",
"6464d870bb2c580352070cc4 ShortName": "PK bipod",
"6464d870bb2c580352070cc4 Description": "A standard-issue bipod for Kalashnikov Machine gun. Manufactured by V.A. Degtyarev Plant.",
"646e46d8f5438077af029fdb Name": "",
"646e46d8f5438077af029fdb ShortName": "",
"646e46d8f5438077af029fdb Description": "",
"646f62fee779812413011ab7 Name": "Zenit 2D flashlight",
"646f62fee779812413011ab7 ShortName": "2D",
"646f62fee779812413011ab7 Description": "The 2D tactical flashlight, installed on a special mount. Manufactured by Zenit.",
@@ -13667,6 +13682,9 @@
"6719023b612cc94b9008e78c Name": "AA-12 stock assembly (TerraGroup)",
"6719023b612cc94b9008e78c ShortName": "AA-12 LABS",
"6719023b612cc94b9008e78c Description": "A standard-issue stock assembly for the Auto Assault-12 shotgun. TerraGroup version.",
"67199b72b79a024c140a17b7 Name": "",
"67199b72b79a024c140a17b7 ShortName": "",
"67199b72b79a024c140a17b7 Description": "",
"671a406a6d315b526708f103 Name": "Package of graphics cards",
"671a406a6d315b526708f103 ShortName": "Csomag",
"671a406a6d315b526708f103 Description": "A package sealed with a large amount of tape. It's quite battered, but the contents appear to be intact.",
@@ -14439,10 +14457,10 @@
"67614b3ab8c060ebb204b106 ShortName": "Khorovod",
"67614b3ab8c060ebb204b106 Description": "An armband by which the participants of the Khorovod can recognize each other. Without it, you cannot be part of the celebration.",
"67614b542eb91250020f2b86 Name": "Armband (Prestige 1)",
"67614b542eb91250020f2b86 ShortName": "Prestige 1",
"67614b542eb91250020f2b86 ShortName": "Prestige",
"67614b542eb91250020f2b86 Description": "This armband will help demonstrate your status in Tarkov.",
"67614b6b47c71ea3d40256d7 Name": "Armband (Prestige 2)",
"67614b6b47c71ea3d40256d7 ShortName": "Prestige 2",
"67614b6b47c71ea3d40256d7 ShortName": "Prestige",
"67614b6b47c71ea3d40256d7 Description": "These armbands are only for the best of the best.",
"67614e3a6a90e4f10b0b140d Name": "Festive airdrop supply crate",
"67614e3a6a90e4f10b0b140d ShortName": "Festive airdrop supply crate",
@@ -14734,11 +14752,11 @@
"67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.",
"67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)",
"67a5f9c8fafb8efd440694b8 ShortName": "Half-mask",
"67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)",
"67a5f9e7f7041a25760dda38 ShortName": "Half-mask",
"67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)",
"67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas White)",
"67a5fa01fafb8efd440694ba ShortName": "Half-mask",
"67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a9cc9cf05be177170bcd76 Name": "Balaclava (Green)",
@@ -15005,15 +15023,51 @@
"67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)",
"67b72c64f753cf9f7a0a07aa ShortName": "Twitch",
"67b72c64f753cf9f7a0a07aa Description": "",
"67b877e7d2dc6a01d5059dd9 Name": "",
"67b877e7d2dc6a01d5059dd9 ShortName": "",
"67b877e7d2dc6a01d5059dd9 Description": "",
"67b877f796760fe84f086992 Name": "",
"67b877f796760fe84f086992 ShortName": "",
"67b877f796760fe84f086992 Description": "",
"67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)",
"67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)",
"67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.",
"67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)",
"67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)",
"67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.",
"67d0576f29f580ebc10efd08 Name": "TheAKGuy AK-50 .50 BMG sniper rifle",
"67d0576f29f580ebc10efd08 ShortName": "AK-50",
"67d0576f29f580ebc10efd08 Description": "The AK-50 semi-automatic anti-materiel rifle is an experimental first-of-a-kind project that adapts the Kalashnikov platform to use the .50 BMG cartridge. The AK-50 has outstanding penetration and range, making it a very powerful sniper rifle. This prototype was developed by a firearms manufacturer and YouTube blogger Brandon Herrera and co. as part of The AK Guy LTD.",
"67d3ed3271c17ff82e0a5b0b Name": "Key case",
"67d3ed3271c17ff82e0a5b0b ShortName": "Keys",
"67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.",
"67d416e19bd76ef20f0e743b Name": "AK-50 dust cover",
"67d416e19bd76ef20f0e743b ShortName": "AK-50 DC",
"67d416e19bd76ef20f0e743b Description": "A receiver dust cover with integrated Picatinny rail for the AK-50, allowing installation of optics. Manufactured by The AK Guy LTD.",
"67d4178bffb910d21f04720a Name": "AK-50 .50 BMG 24 inch barrel",
"67d4178bffb910d21f04720a ShortName": "AK-50 24\"",
"67d4178bffb910d21f04720a Description": "A 24 inch (612mm) barrel for the AK-50, manufactured by The AK Guy LTD.",
"67d417c023ec241bb70d4896 Name": "AK-50 M-LOK handguard with gas tube",
"67d417c023ec241bb70d4896 ShortName": "AK-50",
"67d417c023ec241bb70d4896 Description": "A handguard and gas tube for the AK-50. The handguard is equipped with an M-LOK standard interface for attaching additional equipment, and also has picatinny rail for mounting tactical devices. Manufactured by The AK Guy LTD.",
"67d41883f378a36c4706eeb7 Name": "AK-50 .50 BMG muzzle brake",
"67d41883f378a36c4706eeb7 ShortName": "AK-50 MB",
"67d41883f378a36c4706eeb7 Description": "A muzzle brake for the AK-50. Reduces recoil and muzzle rise. Manufactured by The AK Guy LTD.",
"67d418d0ffb910d21f04720e Name": "M82A1 .50 BMG 10-round magazine",
"67d418d0ffb910d21f04720e ShortName": "M82",
"67d418d0ffb910d21f04720e Description": "A 10-round .50 BMG magazine for the M82A1 sniper rifle, manufactured by Barrett Firearms.",
"67d41936f378a36c4706eeb9 Name": ".50 BMG HP",
"67d41936f378a36c4706eeb9 ShortName": "HP",
"67d41936f378a36c4706eeb9 Description": "A .50 BMG (12.7x99mm NATO) hollow point cartridge, developed in the USA. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact, however the hollow point bullet design does not allow it to penetrate armor effectively.",
"67dc212493ce32834b0fa446 Name": ".50 BMG M21",
"67dc212493ce32834b0fa446 ShortName": "M21",
"67dc212493ce32834b0fa446 Description": "A .50 BMG (12.7x99mm NATO) M21 \"headlight\" high-visibility tracer cartridge, developed in the USA and adopted in 1923 for Browning M2 machine guns, primarily designed to destroy light armored vehicles and neutralize enemy personnel behind light cover. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67dc255ee3028a8b120efc48 Name": ".50 BMG M33",
"67dc255ee3028a8b120efc48 ShortName": "M33",
"67dc255ee3028a8b120efc48 Description": "A .50 BMG (12.7x99mm NATO) M33 Ball cartridge, developed in the USA and adopted in 1923 for Browning M2 machine guns, primarily designed to destroy light armored vehicles and neutralize enemy personnel behind light cover. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67dc2648ba5b79876906a166 Name": ".50 BMG M903 SLAP",
"67dc2648ba5b79876906a166 ShortName": "M903",
"67dc2648ba5b79876906a166 Description": "A .50 BMG (12.7x99mm NATO) M903 SLAP (Saboted Light Armor Penetrator) cartridge. Created by placing a 7.62 armor-piercing bullet in a polymer container that separates after leaving the barrel. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67e183377c6c2011970f3149 Name": "Ariadne symbol key",
"67e183377c6c2011970f3149 ShortName": "Ariadne",
"67e183377c6c2011970f3149 Description": "Someone had made a barely visible mark on this key, resembling a ball of thread. Although, it could have simply been left by careless storage.",
@@ -15035,6 +15089,135 @@
"67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster",
"67f924b1b07831a6ef0ce317 ShortName": "Voroshka",
"67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.",
"683dacd53a9ebd9a650ce8a0 Name": "Honor",
"683dacd53a9ebd9a650ce8a0 ShortName": "Honor",
"683dacd53a9ebd9a650ce8a0 Description": "A great mannequin to help you visualize how the uniform would look on you if you decide to stand guard.",
"683dadc8675dbd613909cabb Name": "Jomoon",
"683dadc8675dbd613909cabb ShortName": "Jomoon",
"683dadc8675dbd613909cabb Description": "The creator of this mannequin was clearly into very bizarre things.",
"683db01a0dea92512e020550 Name": "T-pose",
"683db01a0dea92512e020550 ShortName": "T-pose",
"683db01a0dea92512e020550 Description": "A pose of a very dominance-asserting NPC.",
"683dc67e5e8c96c28e0ce6f8 Name": "Gilded ceiling",
"683dc67e5e8c96c28e0ce6f8 ShortName": "Gilded ceiling",
"683dc67e5e8c96c28e0ce6f8 Description": "A white ceiling with gold inlays. Someone went to a lot of trouble to paint these stripes.",
"683dc6aa57f38ea79c0073f1 Name": "White walls",
"683dc6aa57f38ea79c0073f1 ShortName": "White walls",
"683dc6aa57f38ea79c0073f1 Description": "White walls will make the Hideout look more spacious. Like an office.",
"683dc6c1baa42e2bb4024922 Name": "Gray wood",
"683dc6c1baa42e2bb4024922 ShortName": "Gray wood",
"683dc6c1baa42e2bb4024922 Description": "A nice light-colored floor. Helps keep the eyes free of strain. It also keeps the dust almost invisible.",
"683ed6aed885538c4102d8c8 Name": "AK-50 barrel",
"683ed6aed885538c4102d8c8 ShortName": "AK-50",
"683ed6aed885538c4102d8c8 Description": "A 24 inch barrel for the AK-50 sniper rifle.",
"683ed6c2e4b1dd7ec4069dc8 Name": "AK-50 dust cover",
"683ed6c2e4b1dd7ec4069dc8 ShortName": "AK-50",
"683ed6c2e4b1dd7ec4069dc8 Description": "A receiver dust cover for the AK-50 sniper rifle.",
"683ed6ccd9a096739b0c9228 Name": "AK-50 handguard with gas block",
"683ed6ccd9a096739b0c9228 ShortName": "AK-50",
"683ed6ccd9a096739b0c9228 Description": "An M-LOK handguard with railed gas block for the AK-50 sniper rifle.",
"68418091b5b0c9e4c60f0e7a Name": "Dogtag USEC",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"684180bc51bf8645f7067bc8 Name": "Dogtag BEAR",
"684180bc51bf8645f7067bc8 ShortName": "BEAR",
"684180bc51bf8645f7067bc8 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"684180ee9b6d80d840042e8a Name": "Dogtag USEC",
"684180ee9b6d80d840042e8a ShortName": "USEC",
"684180ee9b6d80d840042e8a Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"684181208d035f60230f63f9 Name": "Dogtag BEAR",
"684181208d035f60230f63f9 ShortName": "BEAR",
"684181208d035f60230f63f9 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"6841818c20f5c35b53017729 Name": "Dogtag (Prestige 3)",
"6841818c20f5c35b53017729 ShortName": "Dogtag",
"6841818c20f5c35b53017729 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"6841b11620f5c35b5301772b Name": "Dogtag (Prestige 4)",
"6841b11620f5c35b5301772b ShortName": "Dogtag",
"6841b11620f5c35b5301772b Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"6841b179322db20d190b4b99 Name": "Get a Life poster",
"6841b179322db20d190b4b99 ShortName": "Poster",
"6841b179322db20d190b4b99 Description": "The girl on the poster is definitely hinting at something. But you're stronger than her urging.",
"6841b1ff51bf8645f7067bca Name": "Get a Paw poster",
"6841b1ff51bf8645f7067bca ShortName": "Poster",
"6841b1ff51bf8645f7067bca Description": "We all need a loyal friend. Even if just in the arms of a 2d girl.",
"6841b2506c1fcc41ed0db319 Name": "Armband (Prestige 3)",
"6841b2506c1fcc41ed0db319 ShortName": "Prestige",
"6841b2506c1fcc41ed0db319 Description": "An armband for distinguished warriors.",
"6841b3463fcc417de40a6768 Name": "Armband (Prestige 4)",
"6841b3463fcc417de40a6768 ShortName": "Prestige",
"6841b3463fcc417de40a6768 Description": "You need to work really hard to earn this armband.",
"6841b3ab322db20d190b4b9b Name": "Armband (Prestige 5)",
"6841b3ab322db20d190b4b9b ShortName": "Prestige",
"6841b3ab322db20d190b4b9b Description": "An armband available only to a handful of people in Tarkov.",
"6841b6b674a3c16f5e03d653 Name": "PMC Origins figurine",
"6841b6b674a3c16f5e03d653 ShortName": "Origins",
"6841b6b674a3c16f5e03d653 Description": "This Tarko figurine depicts a very green PMC just setting foot in the city. There must be two more like this one out there somewhere.",
"6841c50c3fcc417de40a676a Name": "Crow target",
"6841c50c3fcc417de40a676a ShortName": "Crow target",
"6841c50c3fcc417de40a676a Description": "Crows are clever birds. But in image form, they certainly won't outsmart you. Unless?",
"6841c7963fcc417de40a676c Name": "Darts target",
"6841c7963fcc417de40a676c ShortName": "Darts target",
"6841c7963fcc417de40a676c Description": "A target for those who miss all the bar games.",
"6841c7f03fcc417de40a676e Name": "Rat target",
"6841c7f03fcc417de40a676e ShortName": "Rat target",
"6841c7f03fcc417de40a676e Description": "A target for sneaky rodent hunters.",
"684696e8199c6a77dc0f9bc8 Name": "Rob",
"684696e8199c6a77dc0f9bc8 ShortName": "Rob",
"684696e8199c6a77dc0f9bc8 Description": "A voice of the PMC USEC operator who came to Tarkov from far away. He is strong, experienced, and ready to fight.",
"6846990ed5d969efe3078408 Name": "Vitaly",
"6846990ed5d969efe3078408 ShortName": "Vitaly",
"6846990ed5d969efe3078408 Description": "A voice of the PMC BEAR operator who has seen this life through and is only looking for one last thing.",
"6847e3010f5df094fb072599 Name": "bear_upper_g99",
"6847e3010f5df094fb072599 ShortName": "",
"6847e3010f5df094fb072599 Description": "",
"6847e338c9626d92b40d2789 Name": "",
"6847e338c9626d92b40d2789 ShortName": "",
"6847e338c9626d92b40d2789 Description": "",
"6847e3cc13183100990dd1c8 Name": "",
"6847e3cc13183100990dd1c8 ShortName": "",
"6847e3cc13183100990dd1c8 Description": "",
"6847e663f43abfdda205835a Name": "Blue Hawaii shirt",
"6847e663f43abfdda205835a ShortName": "Hawaii shirt",
"6847e663f43abfdda205835a Description": "Hawaii shirt",
"6847e76f3f4cd20a97097a93 Name": "Green Hawaii shirt",
"6847e76f3f4cd20a97097a93 ShortName": "Hawaii shirt",
"6847e76f3f4cd20a97097a93 Description": "Hawaii shirt",
"6847e7ec93e9ca7c5b08fcea Name": "",
"6847e7ec93e9ca7c5b08fcea ShortName": "",
"6847e7ec93e9ca7c5b08fcea Description": "",
"685d07f8c18489365003668c Name": "bear_upper_g99",
"685d07f8c18489365003668c ShortName": "",
"685d07f8c18489365003668c Description": "",
"685d0819f16ea024b00ca192 Name": "",
"685d0819f16ea024b00ca192 ShortName": "",
"685d0819f16ea024b00ca192 Description": "",
"685d0844a4c03ac885004b90 Name": "",
"685d0844a4c03ac885004b90 ShortName": "",
"685d0844a4c03ac885004b90 Description": "",
"685d087ae21676b134054474 Name": "",
"685d087ae21676b134054474 ShortName": "",
"685d087ae21676b134054474 Description": "",
"685d08a741b02568210760ca Name": "",
"685d08a741b02568210760ca ShortName": "",
"685d08a741b02568210760ca Description": "",
"685d08ebc18489365003668e Name": "",
"685d08ebc18489365003668e ShortName": "",
"685d08ebc18489365003668e Description": "",
"685d092aed4e253164064e05 Name": "USEC Day Off",
"685d092aed4e253164064e05 ShortName": "Tactical shorts",
"685d092aed4e253164064e05 Description": "Tactical shorts",
"685d0967cb2cba9e8f02e7b3 Name": "BEAR Vacation",
"685d0967cb2cba9e8f02e7b3 ShortName": "Tactical shorts",
"685d0967cb2cba9e8f02e7b3 Description": "Tactical shorts",
"685d097e97aa09c6b60df9f5 Name": "BEAR Vacation",
"685d097e97aa09c6b60df9f5 ShortName": "Hawaii shirt",
"685d097e97aa09c6b60df9f5 Description": "Hawaii shirt",
"685d09b4029bc4c1190e819d Name": "USEC Day Off",
"685d09b4029bc4c1190e819d ShortName": "Hawaii shirt",
"685d09b4029bc4c1190e819d Description": "Hawaii shirt",
"685ebb9dd8500c455802e9c8 Name": "Grenadier t-shirt",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Merch t-shirt",
" V-ex_light": "Road to Military Base V-Ex",
" Voip/DisabledForOffline": "VOIP is unavailable in the offline mode",
" kg": "Kg",
@@ -15203,6 +15386,7 @@
"AVAILABLE ON LEVEL {0}": "A(Z) {0} SZINTTŐL ELÉRHETŐ",
"Abort": "FÉLBEHAGY",
"About half": "Körülbelül a fele",
"Accept (Y)": "ACCEPT (Y)",
"AcceptFriendsRequest": "Barátjelölés elfogadása",
"AcceptInvitation": "Meghívás elfogadása",
"AcceptScreen/ServerSettingsButton": "Raid settings",
@@ -15301,6 +15485,7 @@
"Arena/Armory/ItemNotAvailabeToUnlockErrorHeader": "Unlock unavailable",
"Arena/Armory/ItemNotFoundErrorDescription": "This item was not found",
"Arena/Armory/ItemNotFoundErrorHeader": "Item not found",
"Arena/Armory/LevelReward/lockedState": "Locked",
"Arena/Armory/LevelReward/readyToUlockState": "Ready",
"Arena/Armory/LevelReward/unlockedState": "Ready",
"Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.",
@@ -15344,6 +15529,7 @@
"Arena/CustomGames/Create/Maps": "Locations",
"Arena/CustomGames/Create/Modes": "Modes",
"Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling",
"Arena/CustomGames/Create/StartScoresEnabled": "Set match score",
"Arena/CustomGames/Create/SubModes": "Submodes",
"Arena/CustomGames/Create/TournamentMode": "Tournament mode",
"Arena/CustomGames/Create/TournamentSettings": "Tournament settings",
@@ -15444,6 +15630,8 @@
"Arena/Presets/Tooltips/Medicine": "Medicine",
"Arena/Presets/Tooltips/Other": "Other",
"Arena/Presets/Tooltips/Weapon": "Weapon",
"Arena/RefillContainer": "Equipment refill container",
"Arena/RefillContainer/RefillComplete": "Equipment refilled!",
"Arena/Rematching": "Returning to matching with high priority",
"Arena/Rematching/NoServer": "Due to technical reasons, the server has not been found. Returning to game search.",
"Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.",
@@ -15499,6 +15687,7 @@
"Arena/UI/Disband-Game/Title": "GAME DISBAND",
"Arena/UI/Excluded-from-tre-group": "- You will be kicked from your group",
"Arena/UI/Game-Found": "Game found",
"Arena/UI/LEAVE (N)": "LEAVE (N)",
"Arena/UI/Leave": "LEAVE",
"Arena/UI/Leave-Game/Text1": "Are you sure you want to leave the game?",
"Arena/UI/Leave-Game/Text2": "Server will be disbanded",
@@ -15513,6 +15702,7 @@
"Arena/UI/Match_leaving_permitted_header": "You can leave this match without penalty.",
"Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:",
"Arena/UI/Return": "RETURN",
"Arena/UI/Return (Y)": "RETURN (Y)",
"Arena/UI/Return-to-match": "RETURN TO MATCH",
"Arena/UI/Selection/Blocked": "Preset taken",
"Arena/UI/Waiting": "Waiting...",
@@ -15561,6 +15751,10 @@
"Arena/Widgets/pickup object": "Pick up the device",
"Arena/Widgets/prepare to fight": "Prepare to fight",
"Arena/Widgets/ranked": "Ranked mode",
"Arena/Widgets/refill container blocked": "Container locked",
"Arena/Widgets/refill container cooldown": "Unavailable",
"Arena/Widgets/refill container ready": "Refill equipment",
"Arena/Widgets/refill container refilling": "Refilling",
"Arena/Widgets/round lose": "Round lost",
"Arena/Widgets/round start in": "Round starts in",
"Arena/Widgets/round win": "Round won",
@@ -15768,6 +15962,7 @@
"BTR": "BTR",
"BULLET SPEED": "LÖVEDÉK SEBESSÉGE",
"BUY": "VÁSÁRLÁS",
"BUY (Y)": "BUY (Y)",
"BUY PARTS": "ALKATRÉSZEK VÁSÁRLÁSA",
"Back": "VISSZA",
"Backpack": "Hátizsák",
@@ -15850,6 +16045,7 @@
"CIRCLEOFCULTISTS": "Cultist Circle",
"CLEAR": "TISZTA",
"CLONE": "Másolat",
"CLOSE (Y)": "CLOSE (Y)",
"CLOTHING UNLOCK": "RUHÁZAT FELOLDÁSA",
"COMETOME": "GYERE IDE",
"COMMAND": "PARANCS",
@@ -15899,6 +16095,7 @@
"Can't open context menu while searching": "Nem lehet megnyitni a helyi menüt keresés közben",
"Can't place beacon here": "Can't place a beacon here",
"Cancel": "Mégsem",
"Cancel (N)": "CANCEL (N)",
"CancelInvite": "Meghívás elutasítása",
"CancelLookingForGroup": "Stop looking for a group",
"Captcha counter ended": "You failed the verification",
@@ -15991,6 +16188,7 @@
"ClothingPanel/InternalObtain": "Trader purchase conditions:",
"ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:",
"ClothingPanel/PlayerLevel": "Player\nLevel:",
"ClothingPanel/PrestigeLevel": "Prestige\nLevel:",
"ClothingPanel/RequiredAchievements": "Achievement:",
"ClothingPanel/RequiredPayment": "Required\nPayment:",
"ClothingPanel/RequiredQuest": "Completed\nTask:",
@@ -16533,6 +16731,7 @@
"ERewardType/CustomizationDirect": "Customization",
"ERewardType/ExtraDailyQuest": "Task",
"ERewardType/Skill/Description": "Permanently increases {0} ({1})",
"ERewardType/Stub": "Unique ID",
"ESSAOMode/ColoredHighestQuality": "colored ultra",
"ESSAOMode/FastPerformance": "high performance",
"ESSAOMode/FastestPerformance": "max performance",
@@ -16955,9 +17154,11 @@
"Hideout/Handover window/Caption/All weapons": "All weapons",
"Hideout/Handover window/Message/Items in stash selected:": "Items in stash selected:",
"Hideout/Mannequin/Pose/boxing": "Fist Fighter",
"Hideout/Mannequin/Pose/democracy": "Honor",
"Hideout/Mannequin/Pose/fingerguns": "Cowboy",
"Hideout/Mannequin/Pose/fingerguns2": "Sharpshooter",
"Hideout/Mannequin/Pose/gopnik": "Slav Squat",
"Hideout/Mannequin/Pose/jojo": "Jomoon",
"Hideout/Mannequin/Pose/muscles_flex": "Feel My Gains",
"Hideout/Mannequin/Pose/spreadinghands": "Well What Is It",
"Hideout/Mannequin/Pose/standing": "Briefing",
@@ -17089,6 +17290,7 @@
"Inventory Errors/Not examined target install": "Nem alkalmazható nem vizsgált elemen",
"Inventory Errors/Not moddable in raid": "Nem szerelhető fel raid közben",
"Inventory Errors/Not moddable without multitool": "Multitool szükséges a felszereléshez",
"Inventory Errors/OverMaxBackbackDeep": "Too many identical items stacked consecutively (max {0})",
"Inventory Errors/Putting unlootable": "Ez a hely nem kifosztható",
"Inventory Errors/Putting unlootable ": "Ez a hely nem kifosztható",
"Inventory Errors/Same place": "Nem mozgathatod a tárgyat ugyan arra a helyre",
@@ -17805,6 +18007,7 @@
"Player {0} has left the group": "User {0} has left the group.",
"Player {0} invite you to the group": "{0} nevű játékos meghívott téged a csapatba",
"Player {0} was invited to your group": "{0} meg lett hívva a csoportodba",
"PlayerArenaRefill": "Refill",
"PlayerEquipmentWindow/Caption{0}": "Equipment preview: {0}",
"PlayerProfile/Unavailable": "PMC profile hidden",
"Players spawn": "Players spawn",
@@ -18275,6 +18478,7 @@
"SAN_TRANSIT_1_COND": " ",
"SAN_TRANSIT_1_DESC": "Transit to Streets of Tarkov",
"SAVAGE": "SCAV",
"SAVE (Y)": "SAVE (Y)",
"SAVE AS ...": "MENTÉS MINT ...",
"SAVE AS...": "Mentés mint...",
"SCAV LOOT TRANSFER": "SCAV ZSÁKMÁNY ÁTVITELE",
@@ -18955,7 +19159,7 @@
"Transit/AccessNotGranted": "Access denied",
"Transit/InactivePoint": "Transit unavailable",
"Transit/Interaction": "Interact",
"Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition",
"Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone. Hold \"interact\" to activate the transition.",
"Transition in ": "Transition in ",
"Transition in {0:F1}": "Transition in {0:F1}",
"Tremor": "Remegés",
@@ -19151,6 +19355,8 @@
"UI/Quest/Reward/ItemCaption": "Item",
"UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}",
"UI/Quest/Reward/QuestCaption": "Task",
"UI/Quest/Reward/StubCaption": "Prestige icon",
"UI/Quest/Reward/StubDescription": "Now you can show everyone how cool you are.",
"UI/Quest/Reward/WebPromoCode Name": "Escape from Tarkov: Arena free trial",
"UI/Quests/Conditions/PrestigeLevel{0}": "Prestige level: {0}",
"UI/Quests/Conditions/ProfileLevel{0}": "Character level: {0}",
@@ -19686,6 +19892,7 @@
"arena/customGames/create/skillLvl": "Player skills level:",
"arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}",
"arena/customGames/notify/GameRemoved": "Room has been disbanded",
"arena/customGames/startscoresvalueteam": "Team score",
"arena/customgames/errors/notification/gamealreadystarted": "Game has already started",
"arena/customgames/popup/refreshdailyquest": "Replace operational task?",
"arena/customgames/popups/attemptscountleft:": "Attempts left:",
@@ -20779,92 +20986,92 @@
"608be809bb51f61f7a7bf504": "",
"64b7e7221ed9925548080aea": "Prewipe 13.5 season",
"66c89b3202d36066710f5498": "Summer Twitch Drops event",
"5b47574386f77428ca22b2ed": "Elemek és akkumulátorok",
"5b47574386f77428ca22b2ee": "Építési alapanyagok",
"5b47574386f77428ca22b2ef": "Elektronika",
"5b47574386f77428ca22b2f0": "Háztartási anyagok",
"5b47574386f77428ca22b2f1": "Értéktárgyak",
"5b47574386f77428ca22b2f2": "Gyúlékony anyagok",
"5b47574386f77428ca22b2f3": "Orvosi ellátmányok",
"5b47574386f77428ca22b2f4": "Egyéb",
"5b47574386f77428ca22b2f6": "Szerszámok",
"5b47574386f77428ca22b32f": "Maszkok és arcvédők",
"5b47574386f77428ca22b330": "Fejfedők és sisakok",
"5b47574386f77428ca22b331": "Védőszemüvegek",
"5b47574386f77428ca22b335": "Italok",
"5b47574386f77428ca22b336": "Étel",
"5b47574386f77428ca22b337": "Tabletták",
"5b47574386f77428ca22b338": "Elsősegélycsomagok",
"5b47574386f77428ca22b339": "Sebesülés ellátás",
"5b47574386f77428ca22b33a": "Fecskednők",
"5b47574386f77428ca22b33b": "Lőszer",
"5b47574386f77428ca22b33c": "Lőszeres dobozok",
"5b47574386f77428ca22b33e": "Árucsere tárgyak",
"5b47574386f77428ca22b33f": "Felszerelés",
"5b47574386f77428ca22b340": "Élelmiszerek",
"5b47574386f77428ca22b341": "Infó tárgyak",
"5b47574386f77428ca22b342": "Kulcsok",
"5b47574386f77428ca22b343": "Térképek",
"5b47574386f77428ca22b344": "Gyógyszerek",
"5b47574386f77428ca22b345": "Speciális felszerelés",
"5b47574386f77428ca22b346": "Lőszer",
"5b5f6f3c86f774094242ef87": "Fejhallgatók",
"5b5f6f6c86f774093f2ecf0b": "Hátizsákok",
"5b5f6f8786f77447ed563642": "Taktikai mellények",
"5b5f6fa186f77409407a7eb7": "Tárolók és dobozok",
"5b5f6fd286f774093f2ecf0d": "Biztosított tárolók",
"5b5f701386f774093f2ecf0f": "Golyóálló mellények",
"5b5f704686f77447ec5d76d7": "Felszerelés komponensek",
"5b5f71a686f77447ed5636ab": "Fegyver alkatrészek és kiegészítők",
"5b5f71b386f774093f2ecf11": "Funkcionális kiegészítők",
"5b5f71c186f77409407a7ec0": "Bipodok",
"5b5f71de86f774093f2ecf13": "Elülső markolatok",
"5b5f724186f77447ed5636ad": "Csőtorkolati szerelvények",
"5b5f724c86f774093f2ecf15": "Csőszájfékek és lángrejtők",
"5b5f72f786f77447ec5d7702": "Csőtorkolat adapterek",
"5b5f731a86f774093e6cb4f9": "Hangtompítók",
"5b5f736886f774094242f193": "Fény és lézer eszközök",
"5b5f737886f774093e6cb4fb": "Taktikai kombinált eszközök",
"5b5f73ab86f774094242f195": "Elemlámpák",
"5b5f73c486f77447ec5d7704": "Lézeres célmegjelölők",
"5b5f73ec86f774093e6cb4fd": "Irányzékok",
"5b5f740a86f77447ec5d7706": "Roham távcsövek",
"5b5f742686f774093e6cb4ff": "Kollimátorok",
"5b5f744786f774094242f197": "Kompakt kollimátorok",
"5b5f746686f77447ec5d7708": "Irányzékok",
"5b5f748386f774093e6cb501": "Optikák",
"5b5f749986f774094242f199": "Speciális irányzékok",
"5b5f74cc86f77447ec5d770a": "Kiegészítő alkatrészek",
"5b5f750686f774093e6cb503": "Felszerelés kiegészítők",
"5b5f751486f77447ec5d770c": "Felhúzókarok",
"5b5f752e86f774093e6cb505": "Gránátvetők",
"5b5f754a86f774094242f19b": "Tárak",
"5b5f755f86f77447ec5d770e": "Szereléksínek",
"5b5f757486f774093e6cb507": "Válltámaszok és fegyvertestek",
"5b5f759686f774094242f19d": "Tártölcsér",
"5b5f75b986f77447ec5d7710": "Létfontosságú részek",
"5b5f75c686f774094242f19f": "Fegyvercsövek",
"5b5f75e486f77447ec5d7712": "Előagyak",
"5b5f760586f774093e6cb509": "Gáz blokkok",
"5b5f761f86f774094242f1a1": "Pisztoly markolatok",
"5b5f764186f77447ec5d7714": "Alsóágyak és szának",
"5b5f78b786f77447ed5636af": "Pénz",
"5b5f78dc86f77409407a7f8e": "Fegyverek",
"5b5f78e986f77447ed5636b1": "Rohamkarabélyok",
"5b5f78fc86f77409407a7f90": "Gépkarabélyok",
"5b5f791486f774093f2ed3be": "Mesterlövész puskák",
"5b5f792486f77447ed5636b3": "Pisztolyok",
"5b5f794b86f77409407a7f92": "Sörétes puskák",
"5b5f796a86f774093f2ed3c0": "Géppisztolyok",
"5b5f798886f77447ed5636b5": "Forgó-tolózáras puskák",
"5b5f79a486f77409407a7f94": "Géppuskák",
"5b5f79d186f774093f2ed3c2": "Gránátvetők",
"5b5f79eb86f77447ed5636b7": "Speciális fegyverek",
"5b5f7a0886f77409407a7f96": "Közelharci fegyverek",
"5b5f7a2386f774093f2ed3c4": "Dobó fegyverek",
"5b619f1a86f77450a702a6f3": "Küldetés tárgyak",
"5c518ec986f7743b68682ce2": "Mechanikus kulcsok",
"5c518ed586f774119a772aee": "Elektronikus kulcsok",
"5b47574386f77428ca22b2ed": "Energy elements",
"5b47574386f77428ca22b2ee": "Building materials",
"5b47574386f77428ca22b2ef": "Electronics",
"5b47574386f77428ca22b2f0": "Household materials",
"5b47574386f77428ca22b2f1": "Valuables",
"5b47574386f77428ca22b2f2": "Flammable materials",
"5b47574386f77428ca22b2f3": "Medical supplies",
"5b47574386f77428ca22b2f4": "Others",
"5b47574386f77428ca22b2f6": "Tools",
"5b47574386f77428ca22b32f": "Facecovers",
"5b47574386f77428ca22b330": "Headgear",
"5b47574386f77428ca22b331": "Eyewear",
"5b47574386f77428ca22b335": "Drinks",
"5b47574386f77428ca22b336": "Food",
"5b47574386f77428ca22b337": "Pills",
"5b47574386f77428ca22b338": "Medkits",
"5b47574386f77428ca22b339": "Injury treatment",
"5b47574386f77428ca22b33a": "Injectors",
"5b47574386f77428ca22b33b": "Rounds",
"5b47574386f77428ca22b33c": "Ammo packs",
"5b47574386f77428ca22b33e": "Barter items",
"5b47574386f77428ca22b33f": "Gear",
"5b47574386f77428ca22b340": "Provisions",
"5b47574386f77428ca22b341": "Info items",
"5b47574386f77428ca22b342": "Keys",
"5b47574386f77428ca22b343": "Maps",
"5b47574386f77428ca22b344": "Medication",
"5b47574386f77428ca22b345": "Special equipment",
"5b47574386f77428ca22b346": "Ammo",
"5b5f6f3c86f774094242ef87": "Headsets",
"5b5f6f6c86f774093f2ecf0b": "Backpacks",
"5b5f6f8786f77447ed563642": "Tactical rigs",
"5b5f6fa186f77409407a7eb7": "Storage containers",
"5b5f6fd286f774093f2ecf0d": "Secure containers",
"5b5f701386f774093f2ecf0f": "Body armor",
"5b5f704686f77447ec5d76d7": "Gear components",
"5b5f71a686f77447ed5636ab": "Weapon parts & mods",
"5b5f71b386f774093f2ecf11": "Functional mods",
"5b5f71c186f77409407a7ec0": "Bipods",
"5b5f71de86f774093f2ecf13": "Foregrips",
"5b5f724186f77447ed5636ad": "Muzzle devices",
"5b5f724c86f774093f2ecf15": "Flashhiders & brakes",
"5b5f72f786f77447ec5d7702": "Muzzle adapters",
"5b5f731a86f774093e6cb4f9": "Suppressors",
"5b5f736886f774094242f193": "Light & laser devices",
"5b5f737886f774093e6cb4fb": "Tactical combo devices",
"5b5f73ab86f774094242f195": "Flashlights",
"5b5f73c486f77447ec5d7704": "Laser aiming modules",
"5b5f73ec86f774093e6cb4fd": "Sights",
"5b5f740a86f77447ec5d7706": "Assault scopes",
"5b5f742686f774093e6cb4ff": "Collimators",
"5b5f744786f774094242f197": "Compact collimators",
"5b5f746686f77447ec5d7708": "Iron sights",
"5b5f748386f774093e6cb501": "Optics",
"5b5f749986f774094242f199": "Special purpose sights",
"5b5f74cc86f77447ec5d770a": "Auxiliary parts",
"5b5f750686f774093e6cb503": "Gear mods",
"5b5f751486f77447ec5d770c": "Charging handles",
"5b5f752e86f774093e6cb505": "Launchers",
"5b5f754a86f774094242f19b": "Magazines",
"5b5f755f86f77447ec5d770e": "Mounts",
"5b5f757486f774093e6cb507": "Stocks & chassis",
"5b5f759686f774094242f19d": "Magwells",
"5b5f75b986f77447ec5d7710": "Vital parts",
"5b5f75c686f774094242f19f": "Barrels",
"5b5f75e486f77447ec5d7712": "Handguards",
"5b5f760586f774093e6cb509": "Gas blocks",
"5b5f761f86f774094242f1a1": "Pistol grips",
"5b5f764186f77447ec5d7714": "Receivers & slides",
"5b5f78b786f77447ed5636af": "Money",
"5b5f78dc86f77409407a7f8e": "Weapons",
"5b5f78e986f77447ed5636b1": "Assault carbines",
"5b5f78fc86f77409407a7f90": "Assault rifles",
"5b5f791486f774093f2ed3be": "Marksman rifles",
"5b5f792486f77447ed5636b3": "Pistols",
"5b5f794b86f77409407a7f92": "Shotguns",
"5b5f796a86f774093f2ed3c0": "Submachine guns",
"5b5f798886f77447ed5636b5": "Bolt-action rifles",
"5b5f79a486f77409407a7f94": "Machine guns",
"5b5f79d186f774093f2ed3c2": "Grenade launchers",
"5b5f79eb86f77447ed5636b7": "Special weapons",
"5b5f7a0886f77409407a7f96": "Melee weapons",
"5b5f7a2386f774093f2ed3c4": "Throwables",
"5b619f1a86f77450a702a6f3": "Task items",
"5c518ec986f7743b68682ce2": "Mechanical keys",
"5c518ed586f774119a772aee": "Electronic keys",
"6564b96a189fe36f356d177c": "",
"58fe0e2d86f774720e7a498d 0": "Hogy ityeg, katona? Te voltál az aki elherdálta az összes cuccot {location}-nál/nél {time} órakor {date}-én/án? Fogd, amíg meg nem gondolom magam.",
"58fe0e2d86f774720e7a498d 1": "Te biztosítottad a cuccaid {date} {time}-kor a(z) {location} helyszínén, ugye? Csak nem elvesztetted a felszerelésed muskétás? Pfft, itt van Rambo, a cuccaidat behozták.",
@@ -21045,7 +21252,7 @@
"6441004f8ab20b218807f14b Name": "Chop Shop",
"6441004f8ab20b218807f14b Description": "A car chop shop on the outskirts of Tarkov. It used to be a place where stolen cars were dismantled for parts, but now it's used to host firefights.",
"64b7d7f23d81c8a9ee03ac27 Name": "Block",
"64b7d7f23d81c8a9ee03ac27 Description": "A courtyard in one of residential neighborhoods, equipped by the Host for Arena fights.",
"64b7d7f23d81c8a9ee03ac27 Description": "A courtyard in one of the residential neighborhoods, re-equipped for Arena fights.",
"653e6760052c01c1c805532f Name": "Ground Zero",
"653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.",
"65b8d6f5cdde2479cb2a3125 Name": "Ground Zero",
@@ -21053,7 +21260,7 @@
"662b728d328cb632bd0c6caf Name": "SkyBridge",
"662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.",
"6690e7e7dc976e4c780336b1 Name": "Fort",
"6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights",
"6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights.",
"66ba059e89f905cb2208bd58 Name": "",
"66ba059e89f905cb2208bd58 Description": "",
"6733700029c367a3d40b02af Name": "The Labyrinth",
@@ -21880,6 +22087,8 @@
"67c870e5da2a209b2a0ed126": "",
"67c87145e52edc36aa069ae6": "",
"67c871b6e0b64a07890a2f36": "",
"682dedb734c3c29e5102bbbe": "",
"68347d3e93833d37d307361d": "",
"5936d90786f7742b1420ba5b name": "Bemutatkozás",
"5936d90786f7742b1420ba5b description": "Hello there, soldier. I got a job that's a little too easy for my guys. But you'll do fine. Hey, don't get pissy, I don't know you that well yet to give you a normal job!\n\nThere's a lot of bandit scum roaming the streets. They don't bother me much, but they're still a nuisance. Calm down, say, five of them, and get a couple of MP-133 shotguns off them. I think that'll be enough for you. Dismissed, soldier!",
"5936d90786f7742b1420ba5b failMessageText": "",
@@ -28916,7 +29125,7 @@
"67f3eab9a33cd296b20ee695 name": "Staff Shortage",
"67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.",
"67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!",
"67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we at least have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.",
"67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.",
"67f71386222d15f53e5be7ee": "Locate and neutralize Partisan",
"67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives",
"67f3eab9a33cd296b20ee695 acceptPlayerMessage": "",
@@ -28930,6 +29139,89 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "Hobby Club",
"684009026ceedc792c09b2a7 description": "Excellent, I've been waiting for you. I have a friend in the States, a very skilled weapons professional. He's obsessed with Russian firearms, and for several years now he's been working on his own project, called the AK-50. I don't think you've ever seen an AK that fires a .50 cal... The NATO one, I mean.\n\nSo the project is finally finished, and he sent me a test sample. Such a heavy and specialized rifle is too risky to be imported in one piece, so we broke the package into several parts. Well guess what, things in Tarkov didn't go according to plan. Shocker, I know.\n\nThe main body comes as one part, and it was seized in Atlantic waters. However I have the blueprint, so I need you to use it to build a new one for me. It certainly won't be easy in our circumstances. But at least you'll still have a copy of the blueprint for later use.\n\nThe handguard comes with the gas tube, and it was somehow intercepted by Skier's thugs. This part took two years to assemble, fit, and test, and the cost of development and prototypes has already gone over a couple million.\n\nThe dust cover was intercepted at one of the checkpoints already in Tarkov. I don't know which one, you'll have to search through all of them. But the barrel is definitely at the military base. Glukhar's personally organized an ambush on my convoy, and apparently knew about this shipment. You'll have to fight for it, or hope for some divine intervention.\n\nWhen you've collected all the parts, drop them off at the transmission tower shack near the gas station at the customs district. I'll ask my crew to deliver them from there, and after that I'll be able to manufacture the parts myself. And, of course, I won't forget your help.",
"684009026ceedc792c09b2a7 failMessageText": "",
"684009026ceedc792c09b2a7 successMessageText": "You got everything? This is definitely something to celebrate... There's no other rifle like it not just in Tarkov, but in the whole world! This is what happens when a man with skills takes his dream seriously.\n\nYou already have the blueprint with the main rifle body, and you can get the missing parts from me in the future. And yes, drop by my place after you've tested this beast. I plan to send word to my friend and tell him what his creation can do in the field.",
"68406f61dee69e488380df08": "Assemble and hand over the main part of AK-50",
"68406fd3b614b3db64e6097d": "Locate and obtain the AK-50 barrel on Reserve",
"68406fe240fcc2eea7fbe150": "Hand over the found part",
"684070a1a550c194cf2f833a": "Locate and obtain the AK-50 dust cover at one of Tarkov's security checkpoints",
"684070bb065afe8c5455ad28": "Hand over the found part",
"684070d42d471ff3ba44ef9f": "Obtain and hand over the AK-50 handguard seized by Skier",
"6840711071516aad97bd9156": "Locate Glukhar's workshop on Reserve",
"6840714469caa738cc1225c3": "Locate the checkpoint with seized cargo",
"685e95c44b14e68996ad6590": "Stash the AK-50 body at the specified spot on Customs",
"685e95d28ba62d57a3235675": "Stash the AK-50 handguard at the specified spot on Customs",
"685e95def338135da83ff978": "Stash the AK-50 barrel at the specified spot on Customs",
"685e95f0ac5f975749f6c1f3": "Stash the AK-50 dust cover at the specified spot on Customs",
"685e97f9892281cf7a89f39c": "Build the AK-50 body",
"684009026ceedc792c09b2a7 acceptPlayerMessage": "",
"684009026ceedc792c09b2a7 declinePlayerMessage": "",
"684009026ceedc792c09b2a7 completePlayerMessage": "",
"68400926706e0a55e90b0007 name": "Fair Price - Part 1",
"68400926706e0a55e90b0007 description": "Hello mate. People say you're looking for something, and that you and Mechanic desperately need this fuckin' piece of junk. What, thought I wouldn't find out? I've ran through your little project, so you two aren't gonna bullshit me with the price.\n\nIf you really want it, you'll have to pay the proper price. Twenty... No, fifty grand! And no bargaining. Your little handguard is already locked up in a safe place, you won't find it on your own. So, ready to pay for your project or not?",
"68400926706e0a55e90b0007 failMessageText": "",
"68400926706e0a55e90b0007 successMessageText": "Fucking splendid! Mechanic's a fucking gun nut, I get it, but I sure didn't expect YOU to pay that kind of money for some bloody handguard. Whatever, I don't care. If you two want it, you can go play in your little workshop. This oversized rubbish won't even fit any AK!\n\nI'll tell my boys, they'll drop your part off at the transfer point.",
"684180b0b22d582a57c5a8d7": "Hand over EUR",
"68400926706e0a55e90b0007 acceptPlayerMessage": "",
"68400926706e0a55e90b0007 declinePlayerMessage": "",
"68400926706e0a55e90b0007 completePlayerMessage": "",
"68400953506db3b4db0700e7 name": "Fair Price - Part 2",
"68400953506db3b4db0700e7 description": "Don't regret your investment yet? Let me give you an advice, nerds like Mechanic are the ones who pull off the most rotten schemes! He'll get his profit, and you won't even realise you've been screwed. All right, quit bitching! I'm telling you the honest bloody truth.\n\nIf you're still confident about this \"project\", you can collect the handguard at the abandoned sawmill near the village in the nature reserve, there's a UN post not far from there. The lads have already dropped it off. But I wouldn't stay there too long, who knows what other scum's there. If someone steals it before you, don't come to me with any claims!",
"68400953506db3b4db0700e7 failMessageText": "",
"68400953506db3b4db0700e7 successMessageText": "What, you got it already? Well done mate, you're a good little mule. When you get tired of playing gunsmith with Mechanic, you know who to go to. Oh, and, uh, if you can get the part back, that'd be sweet. Maybe we'll make some business with it, because I think I found really valuable info on this overseas AK...",
"6841814c20c9a6c68800ab79": "Locate and obtain the AK-50 handguard at the old sawmill on Woods",
"6841815b3d5e6b08d1f6e474": "Locate the stash spot",
"684181808b21759f04e1c4ee": "Complete the task Hobby Club",
"68400953506db3b4db0700e7 acceptPlayerMessage": "",
"68400953506db3b4db0700e7 declinePlayerMessage": "",
"68400953506db3b4db0700e7 completePlayerMessage": "",
"6848100b00afffa81f09e365 name": "New Beginning",
"6848100b00afffa81f09e365 description": "Hello my brother! So how's it hanging? Not bored yet? Alright alright, just messing with you. I already figured you know how this one goes.\n\nYou really can't fall off the influential guys' list, dude. At the very least, it's gonna plummet my rep. It's not gonna look good for me if my candidate falls off the list on the third task, so don't get too comfortable.\n\nSo, like I said last time, something big's cooking. And you and I need to keep our fingers on the pulse.\n\nHere's a list of what we need to bring this time. Yeah, it's longer this time. Anyway, you're a smart guy, you'll figure it out.",
"6848100b00afffa81f09e365 failMessageText": "",
"6848100b00afffa81f09e365 successMessageText": "Excellent. Never letting me down, brother. My credibility is still there, and yours is on the rise. Perfect outcome, isn't it?",
"6848100b00afffa81f09e369": "Eliminate PMC operatives",
"6848100b00afffa81f09e36b": "Use the transit from The Lab to Streets of Tarkov",
"6848100b00afffa81f09e36d": "Hand over the found in raid item: BEAR operative figurine",
"6848100b00afffa81f09e36e": "Hand over the found in raid item: Politician Mutkevich figurine",
"6848100b00afffa81f09e36f": "Hand over the found in raid item: Killa figurine",
"6848100b00afffa81f09e370": "Hand over the found in raid item: Reshala figurine",
"6848100b00afffa81f09e371": "Hand over the found in raid item: Ryzhy figurine",
"6848100b00afffa81f09e372": "Hand over the found in raid item: Scav figurine",
"6848100b00afffa81f09e373": "Hand over the found in raid item: Tagilla figurine",
"6848100b00afffa81f09e374": "Hand over the found in raid item: USEC operative figurine",
"6848100b00afffa81f09e375": "Hand over the found in raid item: Cultist figurine",
"6848100b00afffa81f09e376": "Hand over the found in raid item: Den figurine",
"6848116061809d65b8503617": "Survive and extract from Streets of Tarkov",
"684811fa366152006bebe08b": "Hand over any of the limited Labyrinth figurines",
"684812156189183883f13947": "Eliminate Raiders",
"6848100b00afffa81f09e365 acceptPlayerMessage": "",
"6848100b00afffa81f09e365 declinePlayerMessage": "",
"6848100b00afffa81f09e365 completePlayerMessage": "",
"68481881f43abfdda2058369 name": "New Beginning",
"68481881f43abfdda2058369 description": "Always good to see you on my doorstep! Not bored, are you? What, am I repeating myself again? Hey come on, it's just a little joke!\n\nAlright, down to business. The lists are constantly being updated, and you know our reputations are on the line. You know that you're not going anywhere in Tarkov without it. So we have to get this job done. I've just been handed the new list...\n\nWhat, you've already done some of these? Cool, easier for you. You gotta look on the bright side, brother! Otherwise, you're not gonna live long. Go ahead, show all those list makers how tough you are!",
"68481881f43abfdda2058369 failMessageText": "",
"68481881f43abfdda2058369 successMessageText": "Nice job, brother! Could have been quicker, but there was nothing in the task about time, so let's just ignore it.",
"68481881f43abfdda205836d": "Eliminate PMC operatives",
"68481881f43abfdda205836f": "Use the transit from The Lab to Streets of Tarkov",
"68481881f43abfdda2058371": "Hand over the found in raid item: BEAR operative figurine",
"68481881f43abfdda2058372": "Hand over the found in raid item: Politician Mutkevich figurine",
"68481881f43abfdda2058373": "Hand over the found in raid item: Killa figurine",
"68481881f43abfdda2058374": "Hand over the found in raid item: Reshala figurine",
"68481881f43abfdda2058375": "Hand over the found in raid item: Ryzhy figurine",
"68481881f43abfdda2058376": "Hand over the found in raid item: Scav figurine",
"68481881f43abfdda2058377": "Hand over the found in raid item: Tagilla figurine",
"68481881f43abfdda2058378": "Hand over the found in raid item: USEC operative figurine",
"68481881f43abfdda2058379": "Hand over the found in raid item: Cultist figurine",
"68481881f43abfdda205837a": "Hand over the found in raid item: Den figurine",
"68481a8eda10b760b3b1a73f": "Eliminate Rogues",
"68483a05801f8d9e40ac05b1": "Use the transit from Streets of Tarkov to Interchange",
"68483a48dcb8688e2454ab7b": "Survive and extract from Interchange",
"68486a0eda4828c0772e337b": "Hand over any of the found in raid limited Labyrinth figurines",
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.",
@@ -29548,7 +29840,7 @@
"6512f1e3be73cc7f07358ed5 description": "Neutralize Killa for the first time while playing as a PMC",
"6512f1e3be73cc7f07358ed5 successMessage": "",
"6513eb6e0dc723592b0f9095 name": "Call Your Brother",
"6513eb6e0dc723592b0f9095 description": "Eliminate Tagilla for the first time while playing as a PMC",
"6513eb6e0dc723592b0f9095 description": "Neutralize Tagilla for the first time while playing as a PMC",
"6513eb6e0dc723592b0f9095 successMessage": "",
"6513ed89cf2f1c285e606068 name": "Silence of the Sawmill",
"6513ed89cf2f1c285e606068 description": "Neutralize Shturman for the first time while playing as a PMC",
@@ -29691,7 +29983,7 @@
"6527ee4a647c29201011defe description": "Eliminate a Scav while playing as a Scav",
"6527ee4a647c29201011defe successMessage": "",
"6529097eccf6aa5f8737b3d0 name": "Snowball",
"6529097eccf6aa5f8737b3d0 description": "Eliminate every Boss without dying while playing as a PMC",
"6529097eccf6aa5f8737b3d0 description": "Neutralize every Boss without dying while playing as a PMC",
"6529097eccf6aa5f8737b3d0 successMessage": "",
"652909ac342bdd14e0bcb1bb": "Locate and neutralize Kaban",
"652909cd3f9e480e9d1a3489": "Locate and neutralize Reshala",
@@ -29710,7 +30002,7 @@
"655b49bc91aa9e07687ae47c description": "Neutralize Kollontay for the first time while playing as a PMC",
"655b49bc91aa9e07687ae47c successMessage": "",
"655b4a576689c676ce57acb6 name": "True Crime",
"655b4a576689c676ce57acb6 description": "Eliminate Kollontay 15 times while playing as a PMC",
"655b4a576689c676ce57acb6 description": "Neutralize Kollontay 15 times while playing as a PMC",
"655b4a576689c676ce57acb6 successMessage": "",
"65606e084c9e9c2c190bd25f name": "",
"65606e084c9e9c2c190bd25f description": "",
@@ -30049,6 +30341,12 @@
"67fce0c2f18dc20eae02240b name": "Star Called Sun",
"67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher",
"67fce0c2f18dc20eae02240b successMessage": "",
"6842c25bd02bc07d70054019 name": "Keeping Up the Pace",
"6842c25bd02bc07d70054019 description": "Earn the Prestige level 3",
"6842c25bd02bc07d70054019 successMessage": "",
"6842c27a38482d35ac0bd847 name": "Higher and Higher",
"6842c27a38482d35ac0bd847 description": "Earn the Prestige level 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -30311,9 +30609,28 @@
"67adb4843fec17bf3ea9452e name": "Minotaur's Lair",
"67adb4843fec17bf3ea9452e description": "This ceiling is nothing sophisticated. The Minotaur doesn't need anything like that.",
"67adb48fd05a78f5a5fc5260": "Can only be obtained during special events",
"6841c93d40f98448eafbe5fe name": "Darts target",
"6841c93d40f98448eafbe5fe description": "A target for those who miss all the bar games.",
"6841cb6ad7c6601d14c49c8d": "Reach Prestige level 4",
"6841ca25a3202eb499cdee19 name": "Rat target",
"6841ca25a3202eb499cdee19 description": "A target for sneaky rodent hunters.",
"6841cb482aa4735bc953dccb": "Reach Prestige level 5",
"6841caa796e886f328e69606 name": "Crow target",
"6841caa796e886f328e69606 description": "Crows are clever birds. But in image form, they certainly won't outsmart you. Unless?",
"6841cbabc58389310416c098": "Reach Prestige level 3",
"6841cc541c407f8aa0e4f62b name": "White walls",
"6841cc541c407f8aa0e4f62b description": "White walls will make the Hideout look more spacious. Like an office.",
"6841cc7af143c60fc8dfbd26": "Reach Prestige level 5",
"6841ccf5cf47eb290b9fb24e name": "Gray wood",
"6841ccf5cf47eb290b9fb24e description": "A nice light-colored floor. Helps keep the eyes free of strain. It also keeps the dust almost invisible.",
"6841cd092c726cdf75b45770": "Reach Prestige level 4",
"6841cdb93de393b52dd49865 name": "Gilded ceiling",
"6841cdb93de393b52dd49865 description": "A white ceiling with gold inlays. Someone went to a lot of trouble to paint these stripes.",
"6841cdc772532c1991fe1615": "Reach Prestige level 6",
"672df12f97f0469cea52f55e name": "Prestige 1",
"675d7242b85061aa2017c341": "Complete the task You've Got Mail",
"672df4281ab8d9c8849a0c88 name": "Prestige 2",
"675d71d1bbb25a353d697179": "Reach Vitality skill level 20",
"6760a03623016948ee282ea8 name": ""
}
"683da91d6f472cfa738c52f2 name": "",
"6842f121000d98ce33b9a60f name": ""
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -7418,6 +7418,12 @@
"5fc613c80b735e7b024c76e2 Name": "",
"5fc613c80b735e7b024c76e2 ShortName": "",
"5fc613c80b735e7b024c76e2 Description": "",
"5fc614390b735e7b024c76e6 Name": "",
"5fc614390b735e7b024c76e6 ShortName": "",
"5fc614390b735e7b024c76e6 Description": "",
"5fc6144b0b735e7b024c76e7 Name": "",
"5fc6144b0b735e7b024c76e7 ShortName": "",
"5fc6144b0b735e7b024c76e7 Description": "",
"5fc614da00efd824885865c2 Name": "Sergei",
"5fc614da00efd824885865c2 ShortName": "Sergei",
"5fc614da00efd824885865c2 Description": "Sergei",
@@ -7427,6 +7433,9 @@
"5fc615110b735e7b024c76ea Name": "Josh",
"5fc615110b735e7b024c76ea ShortName": "Josh",
"5fc615110b735e7b024c76ea Description": "Josh",
"5fc6155b0b735e7b024c76ec Name": "",
"5fc6155b0b735e7b024c76ec ShortName": "",
"5fc6155b0b735e7b024c76ec Description": "",
"5fc64ea372b0dd78d51159dc Name": "Cuțit Cultist",
"5fc64ea372b0dd78d51159dc ShortName": "Cuțit",
"5fc64ea372b0dd78d51159dc Description": "Cuțit cu o formă ciudată și simboluri stranii luat de la cultiști. Pare să fie un cuțit ritualic dar, aparent, poate fi folosit și la altceva. Conceput pare să conțină tehnologie dedicată utilizării substanțelor toxice, este recomandat să nu atingi lama.",
@@ -8138,6 +8147,9 @@
"617aa4dd8166f034d57de9c5 Name": "Fumigenă M18 (Verde)",
"617aa4dd8166f034d57de9c5 ShortName": "M18",
"617aa4dd8166f034d57de9c5 Description": "Fumigena M18 fabricată în SUA. Folosită de Armata SUA din Al Doilea Război Mondial. Fumul are culoarea verde.",
"617be9e4e02b3b3fa50fa8f2 Name": "",
"617be9e4e02b3b3fa50fa8f2 ShortName": "",
"617be9e4e02b3b3fa50fa8f2 Description": "",
"617fd91e5539a84ec44ce155 Name": "RGN grenadă",
"617fd91e5539a84ec44ce155 ShortName": "RGN",
"617fd91e5539a84ec44ce155 Description": "RGN (Ruchnaya Granata Nastupatel'naya - \"Offensive Hand Grenade\") este o grenadă ofensivă anti-personal cu fragmentare și detonare la impact.",
@@ -9980,6 +9992,9 @@
"6464d870bb2c580352070cc4 Name": "PK crăcan",
"6464d870bb2c580352070cc4 ShortName": "PK crăcan",
"6464d870bb2c580352070cc4 Description": "Crăcan echipat standard pe Mitraliera Kalashnikov, fabricat de V.A. Degtyarev Plant.",
"646e46d8f5438077af029fdb Name": "",
"646e46d8f5438077af029fdb ShortName": "",
"646e46d8f5438077af029fdb Description": "",
"646f62fee779812413011ab7 Name": "Zenit 2D lanternă",
"646f62fee779812413011ab7 ShortName": "2D",
"646f62fee779812413011ab7 Description": "Zenit 2D lanternă tactică cu montaj pe suport special. Fabricată de Zenit.",
@@ -13667,6 +13682,9 @@
"6719023b612cc94b9008e78c Name": "AA-12 stock assembly (TerraGroup)",
"6719023b612cc94b9008e78c ShortName": "AA-12 LABS",
"6719023b612cc94b9008e78c Description": "A standard-issue stock assembly for the Auto Assault-12 shotgun. TerraGroup version.",
"67199b72b79a024c140a17b7 Name": "",
"67199b72b79a024c140a17b7 ShortName": "",
"67199b72b79a024c140a17b7 Description": "",
"671a406a6d315b526708f103 Name": "Colet cu plăci video",
"671a406a6d315b526708f103 ShortName": "Colet",
"671a406a6d315b526708f103 Description": "Pachet sigilat cu multă bandă. Cam lovit, dar conținutul pare să fie intact.",
@@ -14439,10 +14457,10 @@
"67614b3ab8c060ebb204b106 ShortName": "Khorovod",
"67614b3ab8c060ebb204b106 Description": "An armband by which the participants of the Khorovod can recognize each other. Without it, you cannot be part of the celebration.",
"67614b542eb91250020f2b86 Name": "Armband (Prestige 1)",
"67614b542eb91250020f2b86 ShortName": "Prestige 1",
"67614b542eb91250020f2b86 ShortName": "Prestige",
"67614b542eb91250020f2b86 Description": "This armband will help demonstrate your status in Tarkov.",
"67614b6b47c71ea3d40256d7 Name": "Armband (Prestige 2)",
"67614b6b47c71ea3d40256d7 ShortName": "Prestige 2",
"67614b6b47c71ea3d40256d7 ShortName": "Prestige",
"67614b6b47c71ea3d40256d7 Description": "These armbands are only for the best of the best.",
"67614e3a6a90e4f10b0b140d Name": "Festive airdrop supply crate",
"67614e3a6a90e4f10b0b140d ShortName": "Festive airdrop supply crate",
@@ -14734,11 +14752,11 @@
"67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.",
"67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)",
"67a5f9c8fafb8efd440694b8 ShortName": "Half-mask",
"67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)",
"67a5f9e7f7041a25760dda38 ShortName": "Half-mask",
"67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)",
"67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas White)",
"67a5fa01fafb8efd440694ba ShortName": "Half-mask",
"67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a9cc9cf05be177170bcd76 Name": "Balaclava (Green)",
@@ -15005,15 +15023,51 @@
"67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)",
"67b72c64f753cf9f7a0a07aa ShortName": "Twitch",
"67b72c64f753cf9f7a0a07aa Description": "",
"67b877e7d2dc6a01d5059dd9 Name": "",
"67b877e7d2dc6a01d5059dd9 ShortName": "",
"67b877e7d2dc6a01d5059dd9 Description": "",
"67b877f796760fe84f086992 Name": "",
"67b877f796760fe84f086992 ShortName": "",
"67b877f796760fe84f086992 Description": "",
"67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)",
"67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)",
"67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.",
"67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)",
"67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)",
"67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.",
"67d0576f29f580ebc10efd08 Name": "TheAKGuy AK-50 .50 BMG sniper rifle",
"67d0576f29f580ebc10efd08 ShortName": "AK-50",
"67d0576f29f580ebc10efd08 Description": "The AK-50 semi-automatic anti-materiel rifle is an experimental first-of-a-kind project that adapts the Kalashnikov platform to use the .50 BMG cartridge. The AK-50 has outstanding penetration and range, making it a very powerful sniper rifle. This prototype was developed by a firearms manufacturer and YouTube blogger Brandon Herrera and co. as part of The AK Guy LTD.",
"67d3ed3271c17ff82e0a5b0b Name": "Key case",
"67d3ed3271c17ff82e0a5b0b ShortName": "Keys",
"67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.",
"67d416e19bd76ef20f0e743b Name": "AK-50 dust cover",
"67d416e19bd76ef20f0e743b ShortName": "AK-50 DC",
"67d416e19bd76ef20f0e743b Description": "A receiver dust cover with integrated Picatinny rail for the AK-50, allowing installation of optics. Manufactured by The AK Guy LTD.",
"67d4178bffb910d21f04720a Name": "AK-50 .50 BMG 24 inch barrel",
"67d4178bffb910d21f04720a ShortName": "AK-50 24\"",
"67d4178bffb910d21f04720a Description": "A 24 inch (612mm) barrel for the AK-50, manufactured by The AK Guy LTD.",
"67d417c023ec241bb70d4896 Name": "AK-50 M-LOK handguard with gas tube",
"67d417c023ec241bb70d4896 ShortName": "AK-50",
"67d417c023ec241bb70d4896 Description": "A handguard and gas tube for the AK-50. The handguard is equipped with an M-LOK standard interface for attaching additional equipment, and also has picatinny rail for mounting tactical devices. Manufactured by The AK Guy LTD.",
"67d41883f378a36c4706eeb7 Name": "AK-50 .50 BMG muzzle brake",
"67d41883f378a36c4706eeb7 ShortName": "AK-50 MB",
"67d41883f378a36c4706eeb7 Description": "A muzzle brake for the AK-50. Reduces recoil and muzzle rise. Manufactured by The AK Guy LTD.",
"67d418d0ffb910d21f04720e Name": "M82A1 .50 BMG 10-round magazine",
"67d418d0ffb910d21f04720e ShortName": "M82",
"67d418d0ffb910d21f04720e Description": "A 10-round .50 BMG magazine for the M82A1 sniper rifle, manufactured by Barrett Firearms.",
"67d41936f378a36c4706eeb9 Name": ".50 BMG HP",
"67d41936f378a36c4706eeb9 ShortName": "HP",
"67d41936f378a36c4706eeb9 Description": "A .50 BMG (12.7x99mm NATO) hollow point cartridge, developed in the USA. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact, however the hollow point bullet design does not allow it to penetrate armor effectively.",
"67dc212493ce32834b0fa446 Name": ".50 BMG M21",
"67dc212493ce32834b0fa446 ShortName": "M21",
"67dc212493ce32834b0fa446 Description": "A .50 BMG (12.7x99mm NATO) M21 \"headlight\" high-visibility tracer cartridge, developed in the USA and adopted in 1923 for Browning M2 machine guns, primarily designed to destroy light armored vehicles and neutralize enemy personnel behind light cover. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67dc255ee3028a8b120efc48 Name": ".50 BMG M33",
"67dc255ee3028a8b120efc48 ShortName": "M33",
"67dc255ee3028a8b120efc48 Description": "A .50 BMG (12.7x99mm NATO) M33 Ball cartridge, developed in the USA and adopted in 1923 for Browning M2 machine guns, primarily designed to destroy light armored vehicles and neutralize enemy personnel behind light cover. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67dc2648ba5b79876906a166 Name": ".50 BMG M903 SLAP",
"67dc2648ba5b79876906a166 ShortName": "M903",
"67dc2648ba5b79876906a166 Description": "A .50 BMG (12.7x99mm NATO) M903 SLAP (Saboted Light Armor Penetrator) cartridge. Created by placing a 7.62 armor-piercing bullet in a polymer container that separates after leaving the barrel. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67e183377c6c2011970f3149 Name": "Ariadne symbol key",
"67e183377c6c2011970f3149 ShortName": "Ariadne",
"67e183377c6c2011970f3149 Description": "Someone had made a barely visible mark on this key, resembling a ball of thread. Although, it could have simply been left by careless storage.",
@@ -15035,6 +15089,135 @@
"67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster",
"67f924b1b07831a6ef0ce317 ShortName": "Voroshka",
"67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.",
"683dacd53a9ebd9a650ce8a0 Name": "Honor",
"683dacd53a9ebd9a650ce8a0 ShortName": "Honor",
"683dacd53a9ebd9a650ce8a0 Description": "A great mannequin to help you visualize how the uniform would look on you if you decide to stand guard.",
"683dadc8675dbd613909cabb Name": "Jomoon",
"683dadc8675dbd613909cabb ShortName": "Jomoon",
"683dadc8675dbd613909cabb Description": "The creator of this mannequin was clearly into very bizarre things.",
"683db01a0dea92512e020550 Name": "T-pose",
"683db01a0dea92512e020550 ShortName": "T-pose",
"683db01a0dea92512e020550 Description": "A pose of a very dominance-asserting NPC.",
"683dc67e5e8c96c28e0ce6f8 Name": "Gilded ceiling",
"683dc67e5e8c96c28e0ce6f8 ShortName": "Gilded ceiling",
"683dc67e5e8c96c28e0ce6f8 Description": "A white ceiling with gold inlays. Someone went to a lot of trouble to paint these stripes.",
"683dc6aa57f38ea79c0073f1 Name": "White walls",
"683dc6aa57f38ea79c0073f1 ShortName": "White walls",
"683dc6aa57f38ea79c0073f1 Description": "White walls will make the Hideout look more spacious. Like an office.",
"683dc6c1baa42e2bb4024922 Name": "Gray wood",
"683dc6c1baa42e2bb4024922 ShortName": "Gray wood",
"683dc6c1baa42e2bb4024922 Description": "A nice light-colored floor. Helps keep the eyes free of strain. It also keeps the dust almost invisible.",
"683ed6aed885538c4102d8c8 Name": "AK-50 barrel",
"683ed6aed885538c4102d8c8 ShortName": "AK-50",
"683ed6aed885538c4102d8c8 Description": "A 24 inch barrel for the AK-50 sniper rifle.",
"683ed6c2e4b1dd7ec4069dc8 Name": "AK-50 dust cover",
"683ed6c2e4b1dd7ec4069dc8 ShortName": "AK-50",
"683ed6c2e4b1dd7ec4069dc8 Description": "A receiver dust cover for the AK-50 sniper rifle.",
"683ed6ccd9a096739b0c9228 Name": "AK-50 handguard with gas block",
"683ed6ccd9a096739b0c9228 ShortName": "AK-50",
"683ed6ccd9a096739b0c9228 Description": "An M-LOK handguard with railed gas block for the AK-50 sniper rifle.",
"68418091b5b0c9e4c60f0e7a Name": "Dogtag USEC",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"684180bc51bf8645f7067bc8 Name": "Dogtag BEAR",
"684180bc51bf8645f7067bc8 ShortName": "BEAR",
"684180bc51bf8645f7067bc8 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"684180ee9b6d80d840042e8a Name": "Dogtag USEC",
"684180ee9b6d80d840042e8a ShortName": "USEC",
"684180ee9b6d80d840042e8a Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"684181208d035f60230f63f9 Name": "Dogtag BEAR",
"684181208d035f60230f63f9 ShortName": "BEAR",
"684181208d035f60230f63f9 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"6841818c20f5c35b53017729 Name": "Dogtag (Prestige 3)",
"6841818c20f5c35b53017729 ShortName": "Dogtag",
"6841818c20f5c35b53017729 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"6841b11620f5c35b5301772b Name": "Dogtag (Prestige 4)",
"6841b11620f5c35b5301772b ShortName": "Dogtag",
"6841b11620f5c35b5301772b Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"6841b179322db20d190b4b99 Name": "Get a Life poster",
"6841b179322db20d190b4b99 ShortName": "Poster",
"6841b179322db20d190b4b99 Description": "The girl on the poster is definitely hinting at something. But you're stronger than her urging.",
"6841b1ff51bf8645f7067bca Name": "Get a Paw poster",
"6841b1ff51bf8645f7067bca ShortName": "Poster",
"6841b1ff51bf8645f7067bca Description": "We all need a loyal friend. Even if just in the arms of a 2d girl.",
"6841b2506c1fcc41ed0db319 Name": "Armband (Prestige 3)",
"6841b2506c1fcc41ed0db319 ShortName": "Prestige",
"6841b2506c1fcc41ed0db319 Description": "An armband for distinguished warriors.",
"6841b3463fcc417de40a6768 Name": "Armband (Prestige 4)",
"6841b3463fcc417de40a6768 ShortName": "Prestige",
"6841b3463fcc417de40a6768 Description": "You need to work really hard to earn this armband.",
"6841b3ab322db20d190b4b9b Name": "Armband (Prestige 5)",
"6841b3ab322db20d190b4b9b ShortName": "Prestige",
"6841b3ab322db20d190b4b9b Description": "An armband available only to a handful of people in Tarkov.",
"6841b6b674a3c16f5e03d653 Name": "PMC Origins figurine",
"6841b6b674a3c16f5e03d653 ShortName": "Origins",
"6841b6b674a3c16f5e03d653 Description": "This Tarko figurine depicts a very green PMC just setting foot in the city. There must be two more like this one out there somewhere.",
"6841c50c3fcc417de40a676a Name": "Crow target",
"6841c50c3fcc417de40a676a ShortName": "Crow target",
"6841c50c3fcc417de40a676a Description": "Crows are clever birds. But in image form, they certainly won't outsmart you. Unless?",
"6841c7963fcc417de40a676c Name": "Darts target",
"6841c7963fcc417de40a676c ShortName": "Darts target",
"6841c7963fcc417de40a676c Description": "A target for those who miss all the bar games.",
"6841c7f03fcc417de40a676e Name": "Rat target",
"6841c7f03fcc417de40a676e ShortName": "Rat target",
"6841c7f03fcc417de40a676e Description": "A target for sneaky rodent hunters.",
"684696e8199c6a77dc0f9bc8 Name": "Rob",
"684696e8199c6a77dc0f9bc8 ShortName": "Rob",
"684696e8199c6a77dc0f9bc8 Description": "A voice of the PMC USEC operator who came to Tarkov from far away. He is strong, experienced, and ready to fight.",
"6846990ed5d969efe3078408 Name": "Vitaly",
"6846990ed5d969efe3078408 ShortName": "Vitaly",
"6846990ed5d969efe3078408 Description": "A voice of the PMC BEAR operator who has seen this life through and is only looking for one last thing.",
"6847e3010f5df094fb072599 Name": "bear_upper_g99",
"6847e3010f5df094fb072599 ShortName": "",
"6847e3010f5df094fb072599 Description": "",
"6847e338c9626d92b40d2789 Name": "",
"6847e338c9626d92b40d2789 ShortName": "",
"6847e338c9626d92b40d2789 Description": "",
"6847e3cc13183100990dd1c8 Name": "",
"6847e3cc13183100990dd1c8 ShortName": "",
"6847e3cc13183100990dd1c8 Description": "",
"6847e663f43abfdda205835a Name": "Blue Hawaii shirt",
"6847e663f43abfdda205835a ShortName": "Hawaii shirt",
"6847e663f43abfdda205835a Description": "Hawaii shirt",
"6847e76f3f4cd20a97097a93 Name": "Green Hawaii shirt",
"6847e76f3f4cd20a97097a93 ShortName": "Hawaii shirt",
"6847e76f3f4cd20a97097a93 Description": "Hawaii shirt",
"6847e7ec93e9ca7c5b08fcea Name": "",
"6847e7ec93e9ca7c5b08fcea ShortName": "",
"6847e7ec93e9ca7c5b08fcea Description": "",
"685d07f8c18489365003668c Name": "bear_upper_g99",
"685d07f8c18489365003668c ShortName": "",
"685d07f8c18489365003668c Description": "",
"685d0819f16ea024b00ca192 Name": "",
"685d0819f16ea024b00ca192 ShortName": "",
"685d0819f16ea024b00ca192 Description": "",
"685d0844a4c03ac885004b90 Name": "",
"685d0844a4c03ac885004b90 ShortName": "",
"685d0844a4c03ac885004b90 Description": "",
"685d087ae21676b134054474 Name": "",
"685d087ae21676b134054474 ShortName": "",
"685d087ae21676b134054474 Description": "",
"685d08a741b02568210760ca Name": "",
"685d08a741b02568210760ca ShortName": "",
"685d08a741b02568210760ca Description": "",
"685d08ebc18489365003668e Name": "",
"685d08ebc18489365003668e ShortName": "",
"685d08ebc18489365003668e Description": "",
"685d092aed4e253164064e05 Name": "USEC Day Off",
"685d092aed4e253164064e05 ShortName": "Tactical shorts",
"685d092aed4e253164064e05 Description": "Tactical shorts",
"685d0967cb2cba9e8f02e7b3 Name": "BEAR Vacation",
"685d0967cb2cba9e8f02e7b3 ShortName": "Tactical shorts",
"685d0967cb2cba9e8f02e7b3 Description": "Tactical shorts",
"685d097e97aa09c6b60df9f5 Name": "BEAR Vacation",
"685d097e97aa09c6b60df9f5 ShortName": "Hawaii shirt",
"685d097e97aa09c6b60df9f5 Description": "Hawaii shirt",
"685d09b4029bc4c1190e819d Name": "USEC Day Off",
"685d09b4029bc4c1190e819d ShortName": "Hawaii shirt",
"685d09b4029bc4c1190e819d Description": "Hawaii shirt",
"685ebb9dd8500c455802e9c8 Name": "Grenadier t-shirt",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Merch t-shirt",
" V-ex_light": "Drum spre Baza Militară - Ex Auto",
" Voip/DisabledForOffline": "VOIP este indisponibil în modul offline",
" kg": " kg",
@@ -15203,6 +15386,7 @@
"AVAILABLE ON LEVEL {0}": "DISPONIBIL LA NIVELUL {0}",
"Abort": "ABANDON",
"About half": "Aprox. jumătate",
"Accept (Y)": "ACCEPT (Y)",
"AcceptFriendsRequest": "Acceptă cererea de prietenie",
"AcceptInvitation": "Acceptă invitația",
"AcceptScreen/ServerSettingsButton": "Setări Raid",
@@ -15301,6 +15485,7 @@
"Arena/Armory/ItemNotAvailabeToUnlockErrorHeader": "Unlock unavailable",
"Arena/Armory/ItemNotFoundErrorDescription": "This item was not found",
"Arena/Armory/ItemNotFoundErrorHeader": "Item not found",
"Arena/Armory/LevelReward/lockedState": "Locked",
"Arena/Armory/LevelReward/readyToUlockState": "Ready",
"Arena/Armory/LevelReward/unlockedState": "Ready",
"Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.",
@@ -15344,6 +15529,7 @@
"Arena/CustomGames/Create/Maps": "Locaţii",
"Arena/CustomGames/Create/Modes": "Moduri",
"Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling",
"Arena/CustomGames/Create/StartScoresEnabled": "Set match score",
"Arena/CustomGames/Create/SubModes": "Submoduri",
"Arena/CustomGames/Create/TournamentMode": "Mod Turneu",
"Arena/CustomGames/Create/TournamentSettings": "Setări Turneu",
@@ -15444,6 +15630,8 @@
"Arena/Presets/Tooltips/Medicine": "Medicale",
"Arena/Presets/Tooltips/Other": "Altele",
"Arena/Presets/Tooltips/Weapon": "Armă",
"Arena/RefillContainer": "Equipment refill container",
"Arena/RefillContainer/RefillComplete": "Equipment refilled!",
"Arena/Rematching": "Întoarcere la căutare cu prioritate ridicată",
"Arena/Rematching/NoServer": "Din cauza unor motive tehnice, serverul nu a fost găsit. Întoarcere la căutarea unui joc.",
"Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.",
@@ -15499,6 +15687,7 @@
"Arena/UI/Disband-Game/Title": "DESFINȚEAZĂ JOCUL",
"Arena/UI/Excluded-from-tre-group": "- Vei fi dat afară din grup",
"Arena/UI/Game-Found": "A fost găsit joc",
"Arena/UI/LEAVE (N)": "LEAVE (N)",
"Arena/UI/Leave": "IEȘI",
"Arena/UI/Leave-Game/Text1": "Ești sigur că vrei să părăsești jocul?",
"Arena/UI/Leave-Game/Text2": "Serverul va fi desființat",
@@ -15513,6 +15702,7 @@
"Arena/UI/Match_leaving_permitted_header": "Poți părăsi acest meci fără penalizare.",
"Arena/UI/PresetResetToDefault": "Settings for the following presets have been reset to default:",
"Arena/UI/Return": "REVINO",
"Arena/UI/Return (Y)": "RETURN (Y)",
"Arena/UI/Return-to-match": "REVINO ÎN MECI",
"Arena/UI/Selection/Blocked": "Șablon luat",
"Arena/UI/Waiting": "Așteptare...",
@@ -15561,6 +15751,10 @@
"Arena/Widgets/pickup object": "Pick up the device",
"Arena/Widgets/prepare to fight": "Pregătește-te de luptă",
"Arena/Widgets/ranked": "Ranked mode",
"Arena/Widgets/refill container blocked": "Container locked",
"Arena/Widgets/refill container cooldown": "Unavailable",
"Arena/Widgets/refill container ready": "Refill equipment",
"Arena/Widgets/refill container refilling": "Refilling",
"Arena/Widgets/round lose": "Rundă pierdută",
"Arena/Widgets/round start in": "Rundă începe în",
"Arena/Widgets/round win": "Rundă câștigată",
@@ -15768,6 +15962,7 @@
"BTR": "BTR",
"BULLET SPEED": "VITEZA GLONȚULUI",
"BUY": "CUMPĂRĂ",
"BUY (Y)": "BUY (Y)",
"BUY PARTS": "CUMPĂRA COMP.",
"Back": "ÎNAPOI",
"Backpack": "Rucsac",
@@ -15850,6 +16045,7 @@
"CIRCLEOFCULTISTS": "Cultist Circle",
"CLEAR": "LIBER",
"CLONE": "Duplicat",
"CLOSE (Y)": "CLOSE (Y)",
"CLOTHING UNLOCK": "CUMPĂRĂ ÎMBRĂCĂMINTE",
"COMETOME": "VINO LA MINE",
"COMMAND": "ORDONĂ",
@@ -15899,6 +16095,7 @@
"Can't open context menu while searching": "Nu se poate deschide meniul contextual în timpul căutării",
"Can't place beacon here": "Nu poți plasa emițătorul aici",
"Cancel": "Anulează",
"Cancel (N)": "CANCEL (N)",
"CancelInvite": "Anulează invitația",
"CancelLookingForGroup": "Oprește căutarea unui grup",
"Captcha counter ended": "Ai eșuat verificarea",
@@ -15991,6 +16188,7 @@
"ClothingPanel/InternalObtain": "Condiții pentru achiziție:",
"ClothingPanel/LoyaltyLevel": "Comerciant\nNivel loialitate:",
"ClothingPanel/PlayerLevel": "Jucător\nNivel:",
"ClothingPanel/PrestigeLevel": "Prestige\nLevel:",
"ClothingPanel/RequiredAchievements": "Achievement:",
"ClothingPanel/RequiredPayment": "Preț:",
"ClothingPanel/RequiredQuest": "Misiune\nÎndeplinită:",
@@ -16533,6 +16731,7 @@
"ERewardType/CustomizationDirect": "Customization",
"ERewardType/ExtraDailyQuest": "Task",
"ERewardType/Skill/Description": "Permanently increases {0} ({1})",
"ERewardType/Stub": "Unique ID",
"ESSAOMode/ColoredHighestQuality": "colored ultra",
"ESSAOMode/FastPerformance": "high performance",
"ESSAOMode/FastestPerformance": "max performance",
@@ -16955,9 +17154,11 @@
"Hideout/Handover window/Caption/All weapons": "Toate armele",
"Hideout/Handover window/Message/Items in stash selected:": "Articole alese din depozit:",
"Hideout/Mannequin/Pose/boxing": "Fist Fighter",
"Hideout/Mannequin/Pose/democracy": "Honor",
"Hideout/Mannequin/Pose/fingerguns": "Cowboy",
"Hideout/Mannequin/Pose/fingerguns2": "Sharpshooter",
"Hideout/Mannequin/Pose/gopnik": "Slav Squat",
"Hideout/Mannequin/Pose/jojo": "Jomoon",
"Hideout/Mannequin/Pose/muscles_flex": "Feel My Gains",
"Hideout/Mannequin/Pose/spreadinghands": "Well What Is It",
"Hideout/Mannequin/Pose/standing": "Briefing",
@@ -17089,6 +17290,7 @@
"Inventory Errors/Not examined target install": "Nu poți aplica obiectul neexaminat",
"Inventory Errors/Not moddable in raid": "Nu poți atașa în timpul raidului",
"Inventory Errors/Not moddable without multitool": "Multitool necesar pentru ataşare",
"Inventory Errors/OverMaxBackbackDeep": "Too many identical items stacked consecutively (max {0})",
"Inventory Errors/Putting unlootable": "Celula nu poate fi prăduită",
"Inventory Errors/Putting unlootable ": "Celula nu poate fi prăduită",
"Inventory Errors/Same place": "Nu puteți transfera obiectul în același loc",
@@ -17805,6 +18007,7 @@
"Player {0} has left the group": "Utilizatorul {0} a părăsit grupul.",
"Player {0} invite you to the group": "Jucătorul {0} te invită în grup",
"Player {0} was invited to your group": "{0} a fost invitat în grupul tău",
"PlayerArenaRefill": "Refill",
"PlayerEquipmentWindow/Caption{0}": "Equipment preview: {0}",
"PlayerProfile/Unavailable": "PMC profile hidden",
"Players spawn": "Players spawn",
@@ -18275,6 +18478,7 @@
"SAN_TRANSIT_1_COND": " ",
"SAN_TRANSIT_1_DESC": "Transit to Streets of Tarkov",
"SAVAGE": "SCAV",
"SAVE (Y)": "SAVE (Y)",
"SAVE AS ...": "SALVEAZĂ CA...",
"SAVE AS...": "Salvează ca...",
"SCAV LOOT TRANSFER": "TRANSFER PRADA SCAV",
@@ -18955,7 +19159,7 @@
"Transit/AccessNotGranted": "Access denied",
"Transit/InactivePoint": "Transit unavailable",
"Transit/Interaction": "Interact",
"Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition",
"Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone. Hold \"interact\" to activate the transition.",
"Transition in ": "Transition in ",
"Transition in {0:F1}": "Transition in {0:F1}",
"Tremor": "Tremur",
@@ -19151,6 +19355,8 @@
"UI/Quest/Reward/ItemCaption": "Item",
"UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}",
"UI/Quest/Reward/QuestCaption": "Task",
"UI/Quest/Reward/StubCaption": "Prestige icon",
"UI/Quest/Reward/StubDescription": "Now you can show everyone how cool you are.",
"UI/Quest/Reward/WebPromoCode Name": "Escape from Tarkov: Arena free trial",
"UI/Quests/Conditions/PrestigeLevel{0}": "Prestige level: {0}",
"UI/Quests/Conditions/ProfileLevel{0}": "Character level: {0}",
@@ -19686,6 +19892,7 @@
"arena/customGames/create/skillLvl": "Player skills level:",
"arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}",
"arena/customGames/notify/GameRemoved": "Camera a fost desființată",
"arena/customGames/startscoresvalueteam": "Team score",
"arena/customgames/errors/notification/gamealreadystarted": "Jocul a început deja",
"arena/customgames/popup/refreshdailyquest": "Replace operational task?",
"arena/customgames/popups/attemptscountleft:": "Încercări rămase:",
@@ -21045,7 +21252,7 @@
"6441004f8ab20b218807f14b Name": "Chop Shop",
"6441004f8ab20b218807f14b Description": "A car chop shop on the outskirts of Tarkov. It used to be a place where stolen cars were dismantled for parts, but now it's used to host firefights.",
"64b7d7f23d81c8a9ee03ac27 Name": "Block",
"64b7d7f23d81c8a9ee03ac27 Description": "A courtyard in one of residential neighborhoods, equipped by the Host for Arena fights.",
"64b7d7f23d81c8a9ee03ac27 Description": "A courtyard in one of the residential neighborhoods, re-equipped for Arena fights.",
"653e6760052c01c1c805532f Name": "Ground Zero",
"653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.",
"65b8d6f5cdde2479cb2a3125 Name": "Ground Zero",
@@ -21053,7 +21260,7 @@
"662b728d328cb632bd0c6caf Name": "SkyBridge",
"662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.",
"6690e7e7dc976e4c780336b1 Name": "Fort",
"6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights",
"6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights.",
"66ba059e89f905cb2208bd58 Name": "",
"66ba059e89f905cb2208bd58 Description": "",
"6733700029c367a3d40b02af Name": "The Labyrinth",
@@ -21880,6 +22087,8 @@
"67c870e5da2a209b2a0ed126": "",
"67c87145e52edc36aa069ae6": "",
"67c871b6e0b64a07890a2f36": "",
"682dedb734c3c29e5102bbbe": "",
"68347d3e93833d37d307361d": "",
"5936d90786f7742b1420ba5b name": "Debut",
"5936d90786f7742b1420ba5b description": "Salut, soldat. Am o treabă, una prea simplă pentru băieții mei. Ești chiar potrivit. De ce te superi? Nu te cunosc încă, nu-ți pot da o misiune adevărată!\n\nE plin de jeguri pe străzi. Nu mă deranjează în mod special, dar mă deranjează simpla lor prezență. Calmează, ce să zic, vreo 5 din ei, și adu-mi niște puști MP-133 luate de la ei. Cred că-i destul pe moment. Soldat, liber!",
"5936d90786f7742b1420ba5b failMessageText": "",
@@ -28916,7 +29125,7 @@
"67f3eab9a33cd296b20ee695 name": "Staff Shortage",
"67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.",
"67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!",
"67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we at least have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.",
"67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.",
"67f71386222d15f53e5be7ee": "Locate and neutralize Partisan",
"67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives",
"67f3eab9a33cd296b20ee695 acceptPlayerMessage": "",
@@ -28930,6 +29139,89 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "Hobby Club",
"684009026ceedc792c09b2a7 description": "Excellent, I've been waiting for you. I have a friend in the States, a very skilled weapons professional. He's obsessed with Russian firearms, and for several years now he's been working on his own project, called the AK-50. I don't think you've ever seen an AK that fires a .50 cal... The NATO one, I mean.\n\nSo the project is finally finished, and he sent me a test sample. Such a heavy and specialized rifle is too risky to be imported in one piece, so we broke the package into several parts. Well guess what, things in Tarkov didn't go according to plan. Shocker, I know.\n\nThe main body comes as one part, and it was seized in Atlantic waters. However I have the blueprint, so I need you to use it to build a new one for me. It certainly won't be easy in our circumstances. But at least you'll still have a copy of the blueprint for later use.\n\nThe handguard comes with the gas tube, and it was somehow intercepted by Skier's thugs. This part took two years to assemble, fit, and test, and the cost of development and prototypes has already gone over a couple million.\n\nThe dust cover was intercepted at one of the checkpoints already in Tarkov. I don't know which one, you'll have to search through all of them. But the barrel is definitely at the military base. Glukhar's personally organized an ambush on my convoy, and apparently knew about this shipment. You'll have to fight for it, or hope for some divine intervention.\n\nWhen you've collected all the parts, drop them off at the transmission tower shack near the gas station at the customs district. I'll ask my crew to deliver them from there, and after that I'll be able to manufacture the parts myself. And, of course, I won't forget your help.",
"684009026ceedc792c09b2a7 failMessageText": "",
"684009026ceedc792c09b2a7 successMessageText": "You got everything? This is definitely something to celebrate... There's no other rifle like it not just in Tarkov, but in the whole world! This is what happens when a man with skills takes his dream seriously.\n\nYou already have the blueprint with the main rifle body, and you can get the missing parts from me in the future. And yes, drop by my place after you've tested this beast. I plan to send word to my friend and tell him what his creation can do in the field.",
"68406f61dee69e488380df08": "Assemble and hand over the main part of AK-50",
"68406fd3b614b3db64e6097d": "Locate and obtain the AK-50 barrel on Reserve",
"68406fe240fcc2eea7fbe150": "Hand over the found part",
"684070a1a550c194cf2f833a": "Locate and obtain the AK-50 dust cover at one of Tarkov's security checkpoints",
"684070bb065afe8c5455ad28": "Hand over the found part",
"684070d42d471ff3ba44ef9f": "Obtain and hand over the AK-50 handguard seized by Skier",
"6840711071516aad97bd9156": "Locate Glukhar's workshop on Reserve",
"6840714469caa738cc1225c3": "Locate the checkpoint with seized cargo",
"685e95c44b14e68996ad6590": "Stash the AK-50 body at the specified spot on Customs",
"685e95d28ba62d57a3235675": "Stash the AK-50 handguard at the specified spot on Customs",
"685e95def338135da83ff978": "Stash the AK-50 barrel at the specified spot on Customs",
"685e95f0ac5f975749f6c1f3": "Stash the AK-50 dust cover at the specified spot on Customs",
"685e97f9892281cf7a89f39c": "Build the AK-50 body",
"684009026ceedc792c09b2a7 acceptPlayerMessage": "",
"684009026ceedc792c09b2a7 declinePlayerMessage": "",
"684009026ceedc792c09b2a7 completePlayerMessage": "",
"68400926706e0a55e90b0007 name": "Fair Price - Part 1",
"68400926706e0a55e90b0007 description": "Hello mate. People say you're looking for something, and that you and Mechanic desperately need this fuckin' piece of junk. What, thought I wouldn't find out? I've ran through your little project, so you two aren't gonna bullshit me with the price.\n\nIf you really want it, you'll have to pay the proper price. Twenty... No, fifty grand! And no bargaining. Your little handguard is already locked up in a safe place, you won't find it on your own. So, ready to pay for your project or not?",
"68400926706e0a55e90b0007 failMessageText": "",
"68400926706e0a55e90b0007 successMessageText": "Fucking splendid! Mechanic's a fucking gun nut, I get it, but I sure didn't expect YOU to pay that kind of money for some bloody handguard. Whatever, I don't care. If you two want it, you can go play in your little workshop. This oversized rubbish won't even fit any AK!\n\nI'll tell my boys, they'll drop your part off at the transfer point.",
"684180b0b22d582a57c5a8d7": "Hand over EUR",
"68400926706e0a55e90b0007 acceptPlayerMessage": "",
"68400926706e0a55e90b0007 declinePlayerMessage": "",
"68400926706e0a55e90b0007 completePlayerMessage": "",
"68400953506db3b4db0700e7 name": "Fair Price - Part 2",
"68400953506db3b4db0700e7 description": "Don't regret your investment yet? Let me give you an advice, nerds like Mechanic are the ones who pull off the most rotten schemes! He'll get his profit, and you won't even realise you've been screwed. All right, quit bitching! I'm telling you the honest bloody truth.\n\nIf you're still confident about this \"project\", you can collect the handguard at the abandoned sawmill near the village in the nature reserve, there's a UN post not far from there. The lads have already dropped it off. But I wouldn't stay there too long, who knows what other scum's there. If someone steals it before you, don't come to me with any claims!",
"68400953506db3b4db0700e7 failMessageText": "",
"68400953506db3b4db0700e7 successMessageText": "What, you got it already? Well done mate, you're a good little mule. When you get tired of playing gunsmith with Mechanic, you know who to go to. Oh, and, uh, if you can get the part back, that'd be sweet. Maybe we'll make some business with it, because I think I found really valuable info on this overseas AK...",
"6841814c20c9a6c68800ab79": "Locate and obtain the AK-50 handguard at the old sawmill on Woods",
"6841815b3d5e6b08d1f6e474": "Locate the stash spot",
"684181808b21759f04e1c4ee": "Complete the task Hobby Club",
"68400953506db3b4db0700e7 acceptPlayerMessage": "",
"68400953506db3b4db0700e7 declinePlayerMessage": "",
"68400953506db3b4db0700e7 completePlayerMessage": "",
"6848100b00afffa81f09e365 name": "New Beginning",
"6848100b00afffa81f09e365 description": "Hello my brother! So how's it hanging? Not bored yet? Alright alright, just messing with you. I already figured you know how this one goes.\n\nYou really can't fall off the influential guys' list, dude. At the very least, it's gonna plummet my rep. It's not gonna look good for me if my candidate falls off the list on the third task, so don't get too comfortable.\n\nSo, like I said last time, something big's cooking. And you and I need to keep our fingers on the pulse.\n\nHere's a list of what we need to bring this time. Yeah, it's longer this time. Anyway, you're a smart guy, you'll figure it out.",
"6848100b00afffa81f09e365 failMessageText": "",
"6848100b00afffa81f09e365 successMessageText": "Excellent. Never letting me down, brother. My credibility is still there, and yours is on the rise. Perfect outcome, isn't it?",
"6848100b00afffa81f09e369": "Eliminate PMC operatives",
"6848100b00afffa81f09e36b": "Use the transit from The Lab to Streets of Tarkov",
"6848100b00afffa81f09e36d": "Hand over the found in raid item: BEAR operative figurine",
"6848100b00afffa81f09e36e": "Hand over the found in raid item: Politician Mutkevich figurine",
"6848100b00afffa81f09e36f": "Hand over the found in raid item: Killa figurine",
"6848100b00afffa81f09e370": "Hand over the found in raid item: Reshala figurine",
"6848100b00afffa81f09e371": "Hand over the found in raid item: Ryzhy figurine",
"6848100b00afffa81f09e372": "Hand over the found in raid item: Scav figurine",
"6848100b00afffa81f09e373": "Hand over the found in raid item: Tagilla figurine",
"6848100b00afffa81f09e374": "Hand over the found in raid item: USEC operative figurine",
"6848100b00afffa81f09e375": "Hand over the found in raid item: Cultist figurine",
"6848100b00afffa81f09e376": "Hand over the found in raid item: Den figurine",
"6848116061809d65b8503617": "Survive and extract from Streets of Tarkov",
"684811fa366152006bebe08b": "Hand over any of the limited Labyrinth figurines",
"684812156189183883f13947": "Eliminate Raiders",
"6848100b00afffa81f09e365 acceptPlayerMessage": "",
"6848100b00afffa81f09e365 declinePlayerMessage": "",
"6848100b00afffa81f09e365 completePlayerMessage": "",
"68481881f43abfdda2058369 name": "New Beginning",
"68481881f43abfdda2058369 description": "Always good to see you on my doorstep! Not bored, are you? What, am I repeating myself again? Hey come on, it's just a little joke!\n\nAlright, down to business. The lists are constantly being updated, and you know our reputations are on the line. You know that you're not going anywhere in Tarkov without it. So we have to get this job done. I've just been handed the new list...\n\nWhat, you've already done some of these? Cool, easier for you. You gotta look on the bright side, brother! Otherwise, you're not gonna live long. Go ahead, show all those list makers how tough you are!",
"68481881f43abfdda2058369 failMessageText": "",
"68481881f43abfdda2058369 successMessageText": "Nice job, brother! Could have been quicker, but there was nothing in the task about time, so let's just ignore it.",
"68481881f43abfdda205836d": "Eliminate PMC operatives",
"68481881f43abfdda205836f": "Use the transit from The Lab to Streets of Tarkov",
"68481881f43abfdda2058371": "Hand over the found in raid item: BEAR operative figurine",
"68481881f43abfdda2058372": "Hand over the found in raid item: Politician Mutkevich figurine",
"68481881f43abfdda2058373": "Hand over the found in raid item: Killa figurine",
"68481881f43abfdda2058374": "Hand over the found in raid item: Reshala figurine",
"68481881f43abfdda2058375": "Hand over the found in raid item: Ryzhy figurine",
"68481881f43abfdda2058376": "Hand over the found in raid item: Scav figurine",
"68481881f43abfdda2058377": "Hand over the found in raid item: Tagilla figurine",
"68481881f43abfdda2058378": "Hand over the found in raid item: USEC operative figurine",
"68481881f43abfdda2058379": "Hand over the found in raid item: Cultist figurine",
"68481881f43abfdda205837a": "Hand over the found in raid item: Den figurine",
"68481a8eda10b760b3b1a73f": "Eliminate Rogues",
"68483a05801f8d9e40ac05b1": "Use the transit from Streets of Tarkov to Interchange",
"68483a48dcb8688e2454ab7b": "Survive and extract from Interchange",
"68486a0eda4828c0772e337b": "Hand over any of the found in raid limited Labyrinth figurines",
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Undă verde deci? Treaba bună, soldat.",
@@ -30049,6 +30341,12 @@
"67fce0c2f18dc20eae02240b name": "Star Called Sun",
"67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher",
"67fce0c2f18dc20eae02240b successMessage": "",
"6842c25bd02bc07d70054019 name": "Keeping Up the Pace",
"6842c25bd02bc07d70054019 description": "Earn the Prestige level 3",
"6842c25bd02bc07d70054019 successMessage": "",
"6842c27a38482d35ac0bd847 name": "Higher and Higher",
"6842c27a38482d35ac0bd847 description": "Earn the Prestige level 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -30311,9 +30609,28 @@
"67adb4843fec17bf3ea9452e name": "Minotaur's Lair",
"67adb4843fec17bf3ea9452e description": "This ceiling is nothing sophisticated. The Minotaur doesn't need anything like that.",
"67adb48fd05a78f5a5fc5260": "Can only be obtained during special events",
"6841c93d40f98448eafbe5fe name": "Darts target",
"6841c93d40f98448eafbe5fe description": "A target for those who miss all the bar games.",
"6841cb6ad7c6601d14c49c8d": "Reach Prestige level 4",
"6841ca25a3202eb499cdee19 name": "Rat target",
"6841ca25a3202eb499cdee19 description": "A target for sneaky rodent hunters.",
"6841cb482aa4735bc953dccb": "Reach Prestige level 5",
"6841caa796e886f328e69606 name": "Crow target",
"6841caa796e886f328e69606 description": "Crows are clever birds. But in image form, they certainly won't outsmart you. Unless?",
"6841cbabc58389310416c098": "Reach Prestige level 3",
"6841cc541c407f8aa0e4f62b name": "White walls",
"6841cc541c407f8aa0e4f62b description": "White walls will make the Hideout look more spacious. Like an office.",
"6841cc7af143c60fc8dfbd26": "Reach Prestige level 5",
"6841ccf5cf47eb290b9fb24e name": "Gray wood",
"6841ccf5cf47eb290b9fb24e description": "A nice light-colored floor. Helps keep the eyes free of strain. It also keeps the dust almost invisible.",
"6841cd092c726cdf75b45770": "Reach Prestige level 4",
"6841cdb93de393b52dd49865 name": "Gilded ceiling",
"6841cdb93de393b52dd49865 description": "A white ceiling with gold inlays. Someone went to a lot of trouble to paint these stripes.",
"6841cdc772532c1991fe1615": "Reach Prestige level 6",
"672df12f97f0469cea52f55e name": "Prestige 1",
"675d7242b85061aa2017c341": "Complete the task You've Got Mail",
"672df4281ab8d9c8849a0c88 name": "Prestige 2",
"675d71d1bbb25a353d697179": "Reach Vitality skill level 20",
"6760a03623016948ee282ea8 name": ""
}
"683da91d6f472cfa738c52f2 name": "",
"6842f121000d98ce33b9a60f name": ""
}
@@ -7418,6 +7418,12 @@
"5fc613c80b735e7b024c76e2 Name": "",
"5fc613c80b735e7b024c76e2 ShortName": "",
"5fc613c80b735e7b024c76e2 Description": "",
"5fc614390b735e7b024c76e6 Name": "",
"5fc614390b735e7b024c76e6 ShortName": "",
"5fc614390b735e7b024c76e6 Description": "",
"5fc6144b0b735e7b024c76e7 Name": "",
"5fc6144b0b735e7b024c76e7 ShortName": "",
"5fc6144b0b735e7b024c76e7 Description": "",
"5fc614da00efd824885865c2 Name": "Сергей",
"5fc614da00efd824885865c2 ShortName": "Сергей",
"5fc614da00efd824885865c2 Description": "Сергей",
@@ -7427,6 +7433,9 @@
"5fc615110b735e7b024c76ea Name": "Джош",
"5fc615110b735e7b024c76ea ShortName": "Джош",
"5fc615110b735e7b024c76ea Description": "Джош",
"5fc6155b0b735e7b024c76ec Name": "",
"5fc6155b0b735e7b024c76ec ShortName": "",
"5fc6155b0b735e7b024c76ec Description": "",
"5fc64ea372b0dd78d51159dc Name": "Нож сектанта",
"5fc64ea372b0dd78d51159dc ShortName": "Нож",
"5fc64ea372b0dd78d51159dc Description": "Нож странной формы и со странными знаками, отнятый у сектантов. Видимо, используется как ритуальный нож, но, судя по всему, этим применением он не ограничивается. Имеет технологические изменения в конструкции, предназначенные для использования отравляющих веществ - до лезвия лучше не дотрагиваться.",
@@ -8138,6 +8147,9 @@
"617aa4dd8166f034d57de9c5 Name": "Дымовая граната M18 (Зеленый)",
"617aa4dd8166f034d57de9c5 ShortName": "M18",
"617aa4dd8166f034d57de9c5 Description": "Дымовая граната M18 производства США. Используется в армии США ещё со времен Второй Мировой Войны. Цвет дыма - зеленый.",
"617be9e4e02b3b3fa50fa8f2 Name": "",
"617be9e4e02b3b3fa50fa8f2 ShortName": "",
"617be9e4e02b3b3fa50fa8f2 Description": "",
"617fd91e5539a84ec44ce155 Name": "Ручная граната РГН",
"617fd91e5539a84ec44ce155 ShortName": "РГН",
"617fd91e5539a84ec44ce155 Description": "РГН (Ручная Граната Наступательная) - наступательная противопехотная осколочная ручная граната ударно-дистанционного действия.",
@@ -9980,6 +9992,9 @@
"6464d870bb2c580352070cc4 Name": "Сошки для ПК",
"6464d870bb2c580352070cc4 ShortName": "ПК",
"6464d870bb2c580352070cc4 Description": "Штатные сошки для Пулемета Калашникова. Производство Завода имени В. А. Дегтярева.",
"646e46d8f5438077af029fdb Name": "",
"646e46d8f5438077af029fdb ShortName": "",
"646e46d8f5438077af029fdb Description": "",
"646f62fee779812413011ab7 Name": "Фонарь оружейный Зенит \"2Д\"",
"646f62fee779812413011ab7 ShortName": "2Д",
"646f62fee779812413011ab7 Description": "Тактический фонарь \"2Д\", устанавливающийся на специальное крепление. Производство Зенит.",
@@ -13667,6 +13682,9 @@
"6719023b612cc94b9008e78c Name": "Ложе для AA-12 (TerraGroup)",
"6719023b612cc94b9008e78c ShortName": "AA-12 LABS",
"6719023b612cc94b9008e78c Description": "Штатное ложе в сборе для дробовика Auto Assault-12. Версия TerraGroup.",
"67199b72b79a024c140a17b7 Name": "",
"67199b72b79a024c140a17b7 ShortName": "",
"67199b72b79a024c140a17b7 Description": "",
"671a406a6d315b526708f103 Name": "Похищенный оружейный кейс",
"671a406a6d315b526708f103 ShortName": "Зап. кейс",
"671a406a6d315b526708f103 Description": "Похищенный оружейный кейс",
@@ -14439,10 +14457,10 @@
"67614b3ab8c060ebb204b106 ShortName": "Хоровод",
"67614b3ab8c060ebb204b106 Description": "Повязка, по которой участники Хоровода могут узнать друг друга. Без неё не получится стать частью праздника.",
"67614b542eb91250020f2b86 Name": "Повязка на плечо (Престиж 1)",
"67614b542eb91250020f2b86 ShortName": "Престиж 1",
"67614b542eb91250020f2b86 ShortName": "Престиж",
"67614b542eb91250020f2b86 Description": "Повязка поможет продемонстрировать свой статус в Таркове.",
"67614b6b47c71ea3d40256d7 Name": "Повязка на плечо (Престиж 2)",
"67614b6b47c71ea3d40256d7 ShortName": "Престиж 2",
"67614b6b47c71ea3d40256d7 ShortName": "Престиж",
"67614b6b47c71ea3d40256d7 Description": "Такие повязки доступны только лучшим из лучших.",
"67614e3a6a90e4f10b0b140d Name": "Ящик праздничной поддержки",
"67614e3a6a90e4f10b0b140d ShortName": "Ящик праздничной поддержки",
@@ -15005,15 +15023,51 @@
"67b72c64f753cf9f7a0a07aa Name": "Кейс LATAM Drops Event 2025 (Эпический)",
"67b72c64f753cf9f7a0a07aa ShortName": "Twitch",
"67b72c64f753cf9f7a0a07aa Description": "",
"67b877e7d2dc6a01d5059dd9 Name": "",
"67b877e7d2dc6a01d5059dd9 ShortName": "",
"67b877e7d2dc6a01d5059dd9 Description": "",
"67b877f796760fe84f086992 Name": "",
"67b877f796760fe84f086992 ShortName": "",
"67b877f796760fe84f086992 Description": "",
"67cad1ec19b006e9e50f44d6 Name": "Закрытый кейс со снаряжением (Боевой Пропуск 0)",
"67cad1ec19b006e9e50f44d6 ShortName": "Снаряжение (БП 0)",
"67cad1ec19b006e9e50f44d6 Description": "Награда за открытие уровней Боевого Пропуска Сезона 0 Арены. Содержит различное снаряжение, что поможет выживать и убивать в суровом мире Таркова. Но сначала этот ящик надо как-то открыть.",
"67cad3226bf74131800752b7 Name": "Вскрытый кейс со снаряжением (Боевой Пропуск 0)",
"67cad3226bf74131800752b7 ShortName": "Снаряжение (БП 0)",
"67cad3226bf74131800752b7 Description": "Награда за открытие уровней Боевого Пропуска Сезона 0 Арены. Содержит различное снаряжение, что поможет выживать и убивать в суровом мире Таркова. Замок грубо взломан, а значит, больше нет преград между вами и содержимым ящика.",
"67d0576f29f580ebc10efd08 Name": "Снайперская винтовка TheAKGuy AK-50 .50 BMG",
"67d0576f29f580ebc10efd08 ShortName": "AK-50",
"67d0576f29f580ebc10efd08 Description": "Полуавтоматическая крупнокалиберная винтовка \"AK-50\" - экспериментальный проект, впервые адаптирующий платформу Калашникова под использование крупнокалиберных боеприпасов под патрон .50 BMG. AK-50 обладает выдающейся пробивной способностью и дальнобойностью, что делает его очень мощной снайперской винтовкой. Этот прототип был разработан производителем огнестрельного оружия и YouTube-блогером Брэндоном Эррерой и компанией в рамках The AK Guy LTD.",
"67d3ed3271c17ff82e0a5b0b Name": "Кейс для ключей",
"67d3ed3271c17ff82e0a5b0b ShortName": "Ключи",
"67d3ed3271c17ff82e0a5b0b Description": "Этот кейс — ультимативное решение проблемы с хранением ключей в схроне.",
"67d416e19bd76ef20f0e743b Name": "Крышка ствольной коробки для AK-50",
"67d416e19bd76ef20f0e743b ShortName": "AK-50",
"67d416e19bd76ef20f0e743b Description": "Крышка ствольной коробки с интегрированной планкой Пикатинни для AK-50. Позволяет осуществлять установку любых прицельных приспособлений, монтируемых на планку Пикатинни. Производство The AK Guy LTD.",
"67d4178bffb910d21f04720a Name": "Ствол 612мм для AK-50 .50 BMG",
"67d4178bffb910d21f04720a ShortName": "AK-50 612мм",
"67d4178bffb910d21f04720a Description": "Ствол для винтовки AK-50 под патрон .50 BMG длиной 612мм. Производство The AK Guy LTD.",
"67d417c023ec241bb70d4896 Name": "Цевье и газовая трубка M-LOK для AK-50",
"67d417c023ec241bb70d4896 ShortName": "AK-50",
"67d417c023ec241bb70d4896 Description": "Комбинированный кит, состоящий из цевья и газовой трубки, предназначенный для винтовки AK-50. Цевье снабжено интерфейсом стандарта M-LOK для крепления дополнительного оборудования, а также имеет планку пикатинни для установки тактических блоков. Производство The AK Guy LTD.",
"67d41883f378a36c4706eeb7 Name": "Дульный тормоз-компенсатор для AK-50 .50 BMG",
"67d41883f378a36c4706eeb7 ShortName": "AK-50",
"67d41883f378a36c4706eeb7 Description": "Дульный тормоз-компенсатор предназначен для установки на винтовку АК-50, используется с патроном калибра .50 BMG. Снижает отдачу и компенсирует подброс ствола. Производство The AK Guy LTD.",
"67d418d0ffb910d21f04720e Name": "Магазин на 10 патронов .50 BMG для M82A1",
"67d418d0ffb910d21f04720e ShortName": "M82",
"67d418d0ffb910d21f04720e Description": "Десятизарядный магазин для винтовки M82A1, под патрон .50 BMG. Производство Barrett Firearms.",
"67d41936f378a36c4706eeb9 Name": ".50 BMG HP",
"67d41936f378a36c4706eeb9 ShortName": "HP",
"67d41936f378a36c4706eeb9 Description": "Патрон .50 BMG с экспансивной пулей (12.7х99мм NATO) - крупнокалиберный патрон, разработанный в США. Пуля в этом патроне обладает отличным расширением и передачей энергии при ударе, что придает ей исключительное останавливающее и травмирующее воздействие на цель после попадания. Патрон .50 BMG был принят на вооружение в 1923 году для пулеметов M2 и предназначен в первую очередь для уничтожения легкой бронетехники и нейтрализации вражеского персонала за легкими укрытиями. Патрон обладает значительным останавливающим действием и способен к нанесению сокрушающего урона по цели после удара.",
"67dc212493ce32834b0fa446 Name": ".50 BMG M21",
"67dc212493ce32834b0fa446 ShortName": "M21",
"67dc212493ce32834b0fa446 Description": "Патрон .50 BMG с повышенной яркостью трассирования (M21) - крупнокалиберный патрон, разработанный в США. Патрон .50 BMG был принят на вооружение в 1923 году для пулеметов M2 и предназначен в первую очередь для уничтожения легкой бронетехники и нейтрализации вражеского персонала за легкими укрытиями. Патрон обладает значительным останавливающим действием и способен к нанесению сокрушающего урона по цели после удара.",
"67dc255ee3028a8b120efc48 Name": ".50 BMG M33",
"67dc255ee3028a8b120efc48 ShortName": "M33",
"67dc255ee3028a8b120efc48 Description": "Патрон .50 BMG (M33) - крупнокалиберный патрон, разработанный в США. Патрон .50 BMG был принят на вооружение в 1923 году для пулеметов M2 и предназначен в первую очередь для уничтожения легкой бронетехники и нейтрализации вражеского персонала за легкими укрытиями. Патрон обладает значительным останавливающим действием и способен к нанесению сокрушающего урона по цели после удара.",
"67dc2648ba5b79876906a166 Name": ".50 BMG M903 SLAP",
"67dc2648ba5b79876906a166 ShortName": "M903",
"67dc2648ba5b79876906a166 Description": "Патрон M903 SLAP (Saboted Light Armor Penetrator) - подкалиберный бронебойный патрон калибра .50 BMG. Создан путем помещения бронебойной пули калибра 7.62 в пластиковый контейнер, который отделяется после выхода из ствола. Патрон обладает значительным останавливающим действием и способен к нанесению сокрушающего урона по цели после удара.",
"67e183377c6c2011970f3149 Name": "Ключ с меткой Ариадны",
"67e183377c6c2011970f3149 ShortName": "Ариадна",
"67e183377c6c2011970f3149 Description": "Кто-то сделал на этом ключе еле заметную отметку, похожую на клубок ниток. Впрочем, такой след мог остаться и от неосторожного хранения в снаряжённой разгрузке.",
@@ -15035,6 +15089,135 @@
"67f924b1b07831a6ef0ce317 Name": "Плакат с необычной разгрузкой",
"67f924b1b07831a6ef0ce317 ShortName": "Voroshka",
"67f924b1b07831a6ef0ce317 Description": "Вряд ли в нынешнем Таркове можно найти подобные образцы экипировки. Судя по состоянию плаката, он явно был изготовлен ещё в мирное время.",
"683dacd53a9ebd9a650ce8a0 Name": "Честь",
"683dacd53a9ebd9a650ce8a0 ShortName": "Честь",
"683dacd53a9ebd9a650ce8a0 Description": "Отличный манекен, помогающий понять, как будет смотреться обмундирование, если ты решишь постоять в карауле.",
"683dadc8675dbd613909cabb Name": "Джомун",
"683dadc8675dbd613909cabb ShortName": "Джомун",
"683dadc8675dbd613909cabb Description": "Создатель этого манекена явно увлекался очень специфичными вещами.",
"683db01a0dea92512e020550 Name": "Т-поза",
"683db01a0dea92512e020550 ShortName": "Т-поза",
"683db01a0dea92512e020550 Description": "Поза уверенного в себе НПС.",
"683dc67e5e8c96c28e0ce6f8 Name": "Потолок с золотом",
"683dc67e5e8c96c28e0ce6f8 ShortName": "Потолок с золотом",
"683dc67e5e8c96c28e0ce6f8 Description": "Белый потолок с золотыми вставками. Кто-то потрудился, вырисовывая эти полосы.",
"683dc6aa57f38ea79c0073f1 Name": "Белые стены",
"683dc6aa57f38ea79c0073f1 ShortName": "Белые стены",
"683dc6aa57f38ea79c0073f1 Description": "Белые стены сделают Убежище визуально больше. Больше похожим на офис.",
"683dc6c1baa42e2bb4024922 Name": "Серое дерево",
"683dc6c1baa42e2bb4024922 ShortName": "Серое дерево",
"683dc6c1baa42e2bb4024922 Description": "Хороший светлый пол. Помогает не нагружать глаза. А ещё на нём почти не видна пыль.",
"683ed6aed885538c4102d8c8 Name": "Ствол 612мм для AK-50 .50 BMG",
"683ed6aed885538c4102d8c8 ShortName": "AK-50 612мм",
"683ed6aed885538c4102d8c8 Description": "Ствол для винтовки AK-50 под патрон .50 BMG длиной 612мм. Производство The AK Guy LTD.",
"683ed6c2e4b1dd7ec4069dc8 Name": "Крышка ствольной коробки для AK-50",
"683ed6c2e4b1dd7ec4069dc8 ShortName": "AK-50",
"683ed6c2e4b1dd7ec4069dc8 Description": "Крышка ствольной коробки с интегрированной планкой Пикатинни для AK-50. Позволяет осуществлять установку любых прицельных приспособлений, монтируемых на планку Пикатинни. Производство The AK Guy LTD.",
"683ed6ccd9a096739b0c9228 Name": "Цевье и газовая трубка M-LOK для AK-50",
"683ed6ccd9a096739b0c9228 ShortName": "AK-50",
"683ed6ccd9a096739b0c9228 Description": "Комбинированный кит, состоящий из цевья и газовой трубки, предназначенный для винтовки AK-50. Цевье снабжено интерфейсом стандарта M-LOK для крепления дополнительного оборудования, а также имеет планку пикатинни для установки тактических блоков. Производство The AK Guy LTD.",
"68418091b5b0c9e4c60f0e7a Name": "Армейский жетон USEC",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "Особый армейский жетон из нержавеющей стали, позволяющий быстро опознавать убитых и раненых в бою. Имеет интересный золотой оттенок.",
"684180bc51bf8645f7067bc8 Name": "Армейский жетон BEAR",
"684180bc51bf8645f7067bc8 ShortName": "BEAR",
"684180bc51bf8645f7067bc8 Description": "Особый армейский жетон из нержавеющей стали, позволяющий быстро опознавать убитых и раненых в бою. Имеет интересный золотой оттенок.",
"684180ee9b6d80d840042e8a Name": "Армейский жетон USEC",
"684180ee9b6d80d840042e8a ShortName": "USEC",
"684180ee9b6d80d840042e8a Description": "Особый армейский жетон из нержавеющей стали, позволяющий быстро опознавать убитых и раненых в бою. Далеко не каждый ЧВК может получить такой.",
"684181208d035f60230f63f9 Name": "Армейский жетон BEAR",
"684181208d035f60230f63f9 ShortName": "BEAR",
"684181208d035f60230f63f9 Description": "Особый армейский жетон из нержавеющей стали, позволяющий быстро опознавать убитых и раненых в бою. Далеко не каждый ЧВК может получить такой.",
"6841818c20f5c35b53017729 Name": "Армейский жетон (Престиж 3)",
"6841818c20f5c35b53017729 ShortName": "Жетон",
"6841818c20f5c35b53017729 Description": "Особый армейский жетон из нержавеющей стали, позволяющий быстро опознавать убитых и раненых в бою. Имеет интересный золотой оттенок.",
"6841b11620f5c35b5301772b Name": "Армейский жетон (Престиж 4)",
"6841b11620f5c35b5301772b ShortName": "Жетон",
"6841b11620f5c35b5301772b Description": "Особый армейский жетон из нержавеющей стали, позволяющий быстро опознавать убитых и раненых в бою. Далеко не каждый ЧВК может получить такой.",
"6841b179322db20d190b4b99 Name": "Плакат Get a Life",
"6841b179322db20d190b4b99 ShortName": "Плакат",
"6841b179322db20d190b4b99 Description": "Девушка на плакате на что-то точно намекает. Но ты сильнее её призывов.",
"6841b1ff51bf8645f7067bca Name": "Плакат Get a Paw",
"6841b1ff51bf8645f7067bca ShortName": "Плакат",
"6841b1ff51bf8645f7067bca Description": "Всем нам нужен верный друг. Даже просто на руках у нарисованной красотки.",
"6841b2506c1fcc41ed0db319 Name": "Повязка на плечо (Престиж 3)",
"6841b2506c1fcc41ed0db319 ShortName": "Престиж",
"6841b2506c1fcc41ed0db319 Description": "Повязка на плечо для выделившихся бойцов.",
"6841b3463fcc417de40a6768 Name": "Повязка на плечо (Престиж 4)",
"6841b3463fcc417de40a6768 ShortName": "Престиж",
"6841b3463fcc417de40a6768 Description": "Эту повязку на плечо нужно заслужить.",
"6841b3ab322db20d190b4b9b Name": "Повязка на плечо (Престиж 5)",
"6841b3ab322db20d190b4b9b ShortName": "Престиж",
"6841b3ab322db20d190b4b9b Description": "Повязка на плечо, доступная лишь единицам в Таркове.",
"6841b6b674a3c16f5e03d653 Name": "Фигурка ЧВК Начало",
"6841b6b674a3c16f5e03d653 ShortName": "Начало",
"6841b6b674a3c16f5e03d653 Description": "Эта фигурка Tarko показывает совсем ещё зелёного ЧВК, только ступившего в город. Где-то должно быть ещё две подобные.",
"6841c50c3fcc417de40a676a Name": "Охотничья мишень Ворона",
"6841c50c3fcc417de40a676a ShortName": "Охотничья мишень Ворона",
"6841c50c3fcc417de40a676a Description": "Вороны — умные птицы. Но в виде картинки они точно вас не перехитрят.",
"6841c7963fcc417de40a676c Name": "Охотничья мишень Дартс",
"6841c7963fcc417de40a676c ShortName": "Дартс",
"6841c7963fcc417de40a676c Description": "Мишень для тех, кто скучает по бросанию дротиков.",
"6841c7f03fcc417de40a676e Name": "Охотничья мишень Крыса",
"6841c7f03fcc417de40a676e ShortName": "Крыса",
"6841c7f03fcc417de40a676e Description": "Мишень для противников крыс.",
"684696e8199c6a77dc0f9bc8 Name": "Роб",
"684696e8199c6a77dc0f9bc8 ShortName": "Роб",
"684696e8199c6a77dc0f9bc8 Description": "Голос оператора ЧВК USEC, прибывшего в Тарков издалека. Он силён, опытен и готов сражаться.",
"6846990ed5d969efe3078408 Name": "Виталий",
"6846990ed5d969efe3078408 ShortName": "Виталий",
"6846990ed5d969efe3078408 Description": "Голос оператора ЧВК BEAR, повидавшего эту жизнь и ищущего только одного.",
"6847e3010f5df094fb072599 Name": "bear_upper_hawaii_01",
"6847e3010f5df094fb072599 ShortName": "",
"6847e3010f5df094fb072599 Description": "",
"6847e338c9626d92b40d2789 Name": "",
"6847e338c9626d92b40d2789 ShortName": "",
"6847e338c9626d92b40d2789 Description": "",
"6847e3cc13183100990dd1c8 Name": "",
"6847e3cc13183100990dd1c8 ShortName": "",
"6847e3cc13183100990dd1c8 Description": "",
"6847e663f43abfdda205835a Name": "Синяя гавайская рубашка",
"6847e663f43abfdda205835a ShortName": "Гавайская рубашка",
"6847e663f43abfdda205835a Description": "Гавайская рубашка",
"6847e76f3f4cd20a97097a93 Name": "Зелёная гавайская рубашка",
"6847e76f3f4cd20a97097a93 ShortName": "Гавайская рубашка",
"6847e76f3f4cd20a97097a93 Description": "Гавайская рубашка",
"6847e7ec93e9ca7c5b08fcea Name": "",
"6847e7ec93e9ca7c5b08fcea ShortName": "",
"6847e7ec93e9ca7c5b08fcea Description": "",
"685d07f8c18489365003668c Name": "bear_upper_hawaii_01",
"685d07f8c18489365003668c ShortName": "",
"685d07f8c18489365003668c Description": "",
"685d0819f16ea024b00ca192 Name": "",
"685d0819f16ea024b00ca192 ShortName": "",
"685d0819f16ea024b00ca192 Description": "",
"685d0844a4c03ac885004b90 Name": "",
"685d0844a4c03ac885004b90 ShortName": "",
"685d0844a4c03ac885004b90 Description": "",
"685d087ae21676b134054474 Name": "",
"685d087ae21676b134054474 ShortName": "",
"685d087ae21676b134054474 Description": "",
"685d08a741b02568210760ca Name": "",
"685d08a741b02568210760ca ShortName": "",
"685d08a741b02568210760ca Description": "",
"685d08ebc18489365003668e Name": "",
"685d08ebc18489365003668e ShortName": "",
"685d08ebc18489365003668e Description": "",
"685d092aed4e253164064e05 Name": "USEC Day Off",
"685d092aed4e253164064e05 ShortName": "Шорты тактические",
"685d092aed4e253164064e05 Description": "Шорты тактические",
"685d0967cb2cba9e8f02e7b3 Name": "BEAR Отпуск",
"685d0967cb2cba9e8f02e7b3 ShortName": "Тактические шорты",
"685d0967cb2cba9e8f02e7b3 Description": "Тактические шорты",
"685d097e97aa09c6b60df9f5 Name": "BEAR Отпуск",
"685d097e97aa09c6b60df9f5 ShortName": "Гавайская рубашка",
"685d097e97aa09c6b60df9f5 Description": "Гавайская рубашка",
"685d09b4029bc4c1190e819d Name": "USEC Day Off",
"685d09b4029bc4c1190e819d ShortName": "Гавайская рубашка",
"685d09b4029bc4c1190e819d Description": "Гавайская рубашка",
"685ebb9dd8500c455802e9c8 Name": "Футболка \"Grenadier\"",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Футболка-мерч",
" V-ex_light": "А-Выход дорога к военной базе",
" Voip/DisabledForOffline": "VoIP недоступен в оффлайн режиме",
" kg": " кг",
@@ -15203,6 +15386,7 @@
"AVAILABLE ON LEVEL {0}": "ДОСТУПНО С {0}-ГО УРОВНЯ",
"Abort": "ОТМЕНИТЬ",
"About half": "Около половины",
"Accept (Y)": "Принять (Y)",
"AcceptFriendsRequest": "Принять запрос",
"AcceptInvitation": "Принять приглашение",
"AcceptScreen/ServerSettingsButton": "Настройки рейда",
@@ -15301,6 +15485,7 @@
"Arena/Armory/ItemNotAvailabeToUnlockErrorHeader": "Недоступно для разблокировки",
"Arena/Armory/ItemNotFoundErrorDescription": "Данный предмет не был найден",
"Arena/Armory/ItemNotFoundErrorHeader": "Предмет не найден",
"Arena/Armory/LevelReward/lockedState": "Заблокировано",
"Arena/Armory/LevelReward/readyToUlockState": "Готово",
"Arena/Armory/LevelReward/unlockedState": "Готово",
"Arena/AthletePreset/NonUnlockable": "Вещи из сборки: Атлет. Можно было получить в 2024.",
@@ -15344,6 +15529,7 @@
"Arena/CustomGames/Create/Maps": "Локации",
"Arena/CustomGames/Create/Modes": "Режимы",
"Arena/CustomGames/Create/OcclusionCullingEnabled": "Куллинг игроков",
"Arena/CustomGames/Create/StartScoresEnabled": "Задать счет в матче",
"Arena/CustomGames/Create/SubModes": "Подрежимы",
"Arena/CustomGames/Create/TournamentMode": "Турнирный режим",
"Arena/CustomGames/Create/TournamentSettings": "Турнирные настройки",
@@ -15444,6 +15630,8 @@
"Arena/Presets/Tooltips/Medicine": "Медицина",
"Arena/Presets/Tooltips/Other": "Другое",
"Arena/Presets/Tooltips/Weapon": "Оружие",
"Arena/RefillContainer": "Ящик пополнения снаряжения",
"Arena/RefillContainer/RefillComplete": "Инвентарь пополнен!",
"Arena/Rematching": "Возврат к поиску игры с высоким приоритетом",
"Arena/Rematching/NoServer": "По техническим причинам сервер не был найден, возвращаемся в поиск игры",
"Arena/RyzhyEdition/NonUnlockable": "Можно было получить за покупку издания Ryzhy Edition.",
@@ -15499,6 +15687,7 @@
"Arena/UI/Disband-Game/Title": "РАСПУСТИТЬ ИГРУ",
"Arena/UI/Excluded-from-tre-group": "- Вы будете исключены из отряда",
"Arena/UI/Game-Found": "Игра найдена",
"Arena/UI/LEAVE (N)": "Покинуть (N)",
"Arena/UI/Leave": "ПОКИНУТЬ",
"Arena/UI/Leave-Game/Text1": "Вы уверены, что хотите покинуть сервер?",
"Arena/UI/Leave-Game/Text2": "Сервер будет удален",
@@ -15513,6 +15702,7 @@
"Arena/UI/Match_leaving_permitted_header": "Вы можете покинуть матч без штрафа.",
"Arena/UI/PresetResetToDefault": "У следующих пресетов были сброшены настройки до состояния по умолчанию:",
"Arena/UI/Return": "ВЕРНУТЬСЯ",
"Arena/UI/Return (Y)": "Вернуться (Y)",
"Arena/UI/Return-to-match": "ВЕРНУТЬСЯ В МАТЧ",
"Arena/UI/Selection/Blocked": "Пресет приобретен",
"Arena/UI/Waiting": "Ожидание...",
@@ -15561,6 +15751,10 @@
"Arena/Widgets/pickup object": "Подберите устройство",
"Arena/Widgets/prepare to fight": "Приготовьтесь к бою",
"Arena/Widgets/ranked": "Рейтинговый режим",
"Arena/Widgets/refill container blocked": "Ящик недоступен",
"Arena/Widgets/refill container cooldown": "Ящик недоступен",
"Arena/Widgets/refill container ready": "Пополнить снаряжение",
"Arena/Widgets/refill container refilling": "Пополнение снаряжения",
"Arena/Widgets/round lose": "Поражение в раунде",
"Arena/Widgets/round start in": "Старт раунда через",
"Arena/Widgets/round win": "Победа в раунде",
@@ -15768,6 +15962,7 @@
"BTR": "БТР",
"BULLET SPEED": "СКОРОСТЬ ПУЛИ",
"BUY": "КУПИТЬ",
"BUY (Y)": "Купить (Y)",
"BUY PARTS": "КУПИТЬ",
"Back": "НАЗАД",
"Backpack": "Рюкзак",
@@ -15850,6 +16045,7 @@
"CIRCLEOFCULTISTS": "Круг сектантов",
"CLEAR": "ЧИСТО",
"CLONE": "Склонировать",
"CLOSE (Y)": "Закрыть (Y)",
"CLOTHING UNLOCK": "ПОКУПКА ОДЕЖДЫ",
"COMETOME": "КО МНЕ",
"COMMAND": "КОМАНДА",
@@ -15899,6 +16095,7 @@
"Can't open context menu while searching": "Невозможно открыть контекстное меню во время поиска.",
"Can't place beacon here": "Нельзя установить маяк в этом месте",
"Cancel": "Отмена",
"Cancel (N)": "Отмена (N)",
"CancelInvite": "Отменить приглашение",
"CancelLookingForGroup": "Остановить поиск группы",
"Captcha counter ended": "Вы не прошли проверку",
@@ -15991,6 +16188,7 @@
"ClothingPanel/InternalObtain": "Для покупки у торговца требуется:",
"ClothingPanel/LoyaltyLevel": "Уровень Лояльности\nТорговца:",
"ClothingPanel/PlayerLevel": "Уровень \nИгрока:",
"ClothingPanel/PrestigeLevel": "Уровень\nПрестижа:",
"ClothingPanel/RequiredAchievements": "Достижение:",
"ClothingPanel/RequiredPayment": "Необходимая\nОплата:",
"ClothingPanel/RequiredQuest": "Выполненное\nЗадание:",
@@ -16533,6 +16731,7 @@
"ERewardType/CustomizationDirect": "Персонализация",
"ERewardType/ExtraDailyQuest": "Задание",
"ERewardType/Skill/Description": "Перманентное увеличение навыка {0} ({1})",
"ERewardType/Stub": "Уникальный идентификатор",
"ESSAOMode/ColoredHighestQuality": "ультра + цвет",
"ESSAOMode/FastPerformance": "выс. производительность",
"ESSAOMode/FastestPerformance": "макс. производительность",
@@ -16955,9 +17154,11 @@
"Hideout/Handover window/Caption/All weapons": "Всё оружие",
"Hideout/Handover window/Message/Items in stash selected:": "Предметов в схроне выбрано:",
"Hideout/Mannequin/Pose/boxing": "Контактный бой",
"Hideout/Mannequin/Pose/democracy": "Честь",
"Hideout/Mannequin/Pose/fingerguns": "Ковбой",
"Hideout/Mannequin/Pose/fingerguns2": "Взять на изготовку",
"Hideout/Mannequin/Pose/gopnik": "На кортах",
"Hideout/Mannequin/Pose/jojo": "Джомун",
"Hideout/Mannequin/Pose/muscles_flex": "Ты это видел?",
"Hideout/Mannequin/Pose/spreadinghands": "Гладиатор",
"Hideout/Mannequin/Pose/standing": "Инструктаж",
@@ -17089,6 +17290,7 @@
"Inventory Errors/Not examined target install": "Невозможно вставить в неизученный предмет",
"Inventory Errors/Not moddable in raid": "Нельзя устанавливать в рейде",
"Inventory Errors/Not moddable without multitool": "Для установки необходим мультитул",
"Inventory Errors/OverMaxBackbackDeep": "Слишком много последовательно вложенных однотипных предметов (макс. {0})",
"Inventory Errors/Putting unlootable": "Этот слот заблокирован",
"Inventory Errors/Putting unlootable ": "Этот слот заблокирован",
"Inventory Errors/Same place": "Вы не можете положить предмет на то же место где он уже лежит",
@@ -17805,6 +18007,7 @@
"Player {0} has left the group": "Игрок {0} покинул группу",
"Player {0} invite you to the group": "Игрок {0} приглашает вас в группу",
"Player {0} was invited to your group": "Игрок {0} был приглашен в группу",
"PlayerArenaRefill": "Пополнить",
"PlayerEquipmentWindow/Caption{0}": "Просмотр снаряжения: {0}",
"PlayerProfile/Unavailable": "Профиль ЧВК скрыт",
"Players spawn": "Спавн игроков",
@@ -18275,6 +18478,7 @@
"SAN_TRANSIT_1_COND": " ",
"SAN_TRANSIT_1_DESC": "Переход на Улицы Таркова",
"SAVAGE": "ДИКИЙ",
"SAVE (Y)": "Сохранить (Y)",
"SAVE AS ...": "СОХРАНИТЬ КАК ...",
"SAVE AS...": "Сохранить как...",
"SCAV LOOT TRANSFER": "ПЕРЕДАЧА ДОБЫЧИ",
@@ -18955,7 +19159,7 @@
"Transit/AccessNotGranted": "Доступ запрещен",
"Transit/InactivePoint": "Переход недоступен",
"Transit/Interaction": "Взаимодействовать",
"Transit/LONG_TAP_TO_INTERACT": "Вы находитесь в зоне перехода, зажмите \"взаимодействовать\" для активации перехода",
"Transit/LONG_TAP_TO_INTERACT": "Вы находитесь в зоне перехода, зажмите \"взаимодействовать\" для активации перехода.",
"Transition in ": "Переход через ",
"Transition in {0:F1}": "Переход через {0:F1}",
"Tremor": "Тремор",
@@ -19151,6 +19355,8 @@
"UI/Quest/Reward/ItemCaption": "Предмет",
"UI/Quest/Reward/ProductionSchemeCaption": "Рецепт в зоне {0} на уровне {1}",
"UI/Quest/Reward/QuestCaption": "Задание",
"UI/Quest/Reward/StubCaption": "Иконка Престижа",
"UI/Quest/Reward/StubDescription": "Теперь ты можешь продемонстрировать всем насколько ты крут.",
"UI/Quest/Reward/WebPromoCode Name": "Временный доступ в Escape from Tarkov: Arena",
"UI/Quests/Conditions/PrestigeLevel{0}": "Уровень Престижа: {0}",
"UI/Quests/Conditions/ProfileLevel{0}": "Уровень персонажа: {0}",
@@ -19686,6 +19892,7 @@
"arena/customGames/create/skillLvl": "Уровень умений игроков:",
"arena/customGames/invite/message{0}": "ПРИГЛАШЕНИЕ В ПОЛЬЗОВАТЕЛЬСКУЮ ИГРУ ОТ {0}",
"arena/customGames/notify/GameRemoved": "Игра была распущена",
"arena/customGames/startscoresvalueteam": "Счет команды",
"arena/customgames/errors/notification/gamealreadystarted": "Игра уже началась",
"arena/customgames/popup/refreshdailyquest": "Заменить оперативное задание?",
"arena/customgames/popups/attemptscountleft:": "Попыток осталось:",
@@ -20229,9 +20436,9 @@
"hideout_area_2_stage_2_description": "Базовый санузел с деревянным туалетом типа \"сортир\", рукомойником, подведенным к системе водоснабжения. Все это поднимает уровень чистоты и гигиены в Убежище.",
"hideout_area_2_stage_3_description": "Продвинутый санузел с биотуалетом, душем и мусорным контейнером. Все необходимое подведено к системе водоснабжения и обеспечивает максимально доступным уровнем поддержания личной гигиены.",
"hideout_area_3_name": "Склад",
"hideout_area_3_stage_1_description": "Склад малого размера (10х28)",
"hideout_area_3_stage_2_description": "Склад среднего размера (10х38)",
"hideout_area_3_stage_3_description": "Склад большого размера (10х48)",
"hideout_area_3_stage_1_description": "Склад малого размера (10x30)",
"hideout_area_3_stage_2_description": "Склад среднего размера (10x40)",
"hideout_area_3_stage_3_description": "Склад большого размера (10x50)",
"hideout_area_3_stage_4_description": "Склад максимального размера (10х68)",
"hideout_area_4_name": "Генератор",
"hideout_area_4_stage_1_description": "Простой топливный генератор, который может обеспечить электричеством базовое оборудование Убежища. Сердце вашего убежища. Необходимо топливо для поддержания работоспособности всей электросети.",
@@ -20487,7 +20694,7 @@
"ragfair/Trader will be unlocked with the quest completion": "Торговец будет открыт по завершении задания",
"ragfair/Unable to sell the item that contains": "",
"ragfair/Unable to sell the item that contains {0}": "Невозможно продать предмет, в котором находится \"{0}\"",
"ragfair/Unlocked at character LVL {0}": "Возможность выставлять товар на продажу, видеть и покупать товары от других игроков будет открыта на {0}-ом уровне.",
"ragfair/Unlocked at character LVL {0}": "Возможность выставлять товар на продажу, видеть и покупать товары от других игроков временно недоступна.",
"ragfair/W-LIST": "ОТСЛЕЖ.",
"ragfair/You are temporarily banned from flea market": "Вам временно ограничен доступ к Барахолке",
"ragfair/You cannot place non-empty container at ragfair": "Вы не можете продать контейнер с содержимым",
@@ -21053,7 +21260,7 @@
"662b728d328cb632bd0c6caf Name": "Вокзал",
"662b728d328cb632bd0c6caf Description": "ЖД вокзал, поезда которого соединяли Тарков с остальными городами Норвинской области. Был открыт после реконструкции накануне конфликта. Сейчас используется в качестве арены для боёв.",
"6690e7e7dc976e4c780336b1 Name": "Форт",
"6690e7e7dc976e4c780336b1 Description": "Морской форт 19 века, волею судьбы ставший сначала тюрьмой, а потом, полвека спустя, ареной для гладиаторских боев",
"6690e7e7dc976e4c780336b1 Description": "Морской форт 19 века, волею судьбы ставший сначала тюрьмой, а потом, полвека спустя, ареной для гладиаторских боев.",
"66ba059e89f905cb2208bd58 Name": "",
"66ba059e89f905cb2208bd58 Description": "",
"6733700029c367a3d40b02af Name": "Лабиринт",
@@ -21880,6 +22087,8 @@
"67c870e5da2a209b2a0ed126": "",
"67c87145e52edc36aa069ae6": "",
"67c871b6e0b64a07890a2f36": "",
"682dedb734c3c29e5102bbbe": "",
"68347d3e93833d37d307361d": "",
"5936d90786f7742b1420ba5b name": "Проба пера",
"5936d90786f7742b1420ba5b description": "Ну здравствуй, солдат. Есть одно дельце, слишком простое для моих ребят. Для тебя подойдёт. Не бузи, чё хотел вообще, мы ещё не так близко знакомы с тобой!\n\nНа улицах полно всякой швали бандитской развелось. Мешают не сильно, но неприятно. Успокой, скажем, пятерых, и притащи с них пару дробашей МР-133. Думаю, с тебя хватит. За дело, боец!",
"5936d90786f7742b1420ba5b failMessageText": "",
@@ -29044,6 +29253,91 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "Клуб по интересам",
"684009026ceedc792c09b2a7 description": "Я ждал тебя. У меня в Штатах есть друг, редкий профессионал по части оружия. Он повёрнут на российских автоматах, и несколько лет работал над собственным проектом, который назвал АК-50. Вряд ли ты видел АК, который стреляет 50-м калибром... это я про натовский.\n\nПроект завершён, и товарищ отправил мне тестовый образец. Такую тяжёлую и специфичную винтовку слишком рискованно ввозить целиком, поэтому мы разбили посылку на части. Но уже в Таркове всё пошло не по плану. \n\nОсновная часть неразборная, и её изъяли ещё в атлантических водах. Но у меня есть чертёж и мне нужно, чтобы по нему ты собрал новую. В наших условиях будет непросто, да. Зато у тебя на руках останется копия чертежа.\n\nЦевьё объединено с газовой трубкой, и его каким-то образом перехватили люди Лыжника. На сборку, подгонку и тестирование этой детали ушло два года, а стоимость разработки и прототипов уже ушла за пару миллионов. \n\nКрышку ствольной коробки перехватили на одном из КПП уже в Таркове. Не знаю на каком именно, придётся поискать. А ствол точно находится на военной базе. Глухарь лично организовал засаду на мой конвой, и, судя по всему, знал о содержимом. Придётся отбивать с боем или надеяться на удачу.\n\nКогда ты соберёшь все детали из списка, оставь их во времянке рядом с ЛЭПом у заправки в районе таможни. Оттуда мне их доставят, и я смогу изготавливать детали сам. И конечно, о твоём участии я не забуду.",
"684009026ceedc792c09b2a7 failMessageText": "",
"684009026ceedc792c09b2a7 successMessageText": "Ты собрал всё? Такое событие и отпраздновать можно... Ты пойми, второй такой винтовки нет не то что в Таркове, а во всём мире! Вот, что происходит, когда человек с навыками серьёзно берётся за свою мечту.\n\nЧертёж с основной частью винтовки у тебя уже есть, а недостающие детали ты сможешь брать у меня. И да, зайди ко мне после того, как протестируешь этого зверя. Я планирую отправить весточку другу и рассказать, на что способно его детище в полевых условиях.",
"68406f61dee69e488380df08": "Собрать и передать основу AK-50",
"68406fd3b614b3db64e6097d": "Найти запчасть от АК-50 на локации Резерв",
"68406fe240fcc2eea7fbe150": "Передать найденную запчасть",
"684070a1a550c194cf2f833a": "Найти запчасть от АК-50 на одном из КПП в Таркове",
"684070bb065afe8c5455ad28": "Передать найденную запчасть",
"684070d42d471ff3ba44ef9f": "Найти и передать запчасть АК-50, перехваченную Лыжником",
"6840711071516aad97bd9156": "Найти мастерскую Глухаря на локации Резерв",
"6840714469caa738cc1225c3": "Найти КПП с задержанным грузом",
"685e85194e7c744fb626876f": "123",
"685e8a82a4559f14b8a8b932": "321",
"685e95c44b14e68996ad6590": "Заложить основу AK-50 в указанном месте на локации Таможня",
"685e95d28ba62d57a3235675": "Заложить цевье AK-50 в указанном месте на локации Таможня",
"685e95def338135da83ff978": "Заложить ствол AK-50 в указанном месте на локации Таможня",
"685e95f0ac5f975749f6c1f3": "Заложить крышку ствольной коробки AK-50 в указанном месте на локации Таможня",
"685e97f9892281cf7a89f39c": "Собрать основу от винтовки AK-50",
"684009026ceedc792c09b2a7 acceptPlayerMessage": "",
"684009026ceedc792c09b2a7 declinePlayerMessage": "",
"684009026ceedc792c09b2a7 completePlayerMessage": "",
"68400926706e0a55e90b0007 name": "Честная цена. Часть 1",
"68400926706e0a55e90b0007 description": "Здарова! Говорят, что ты ищешь кой-чё, и эта херабора вам с Механиком капец как нужна. А ты чё думал, я не узнаю? Я за вашу маленькую разработку всё проверил, так что с ценой вы меня не нагреете. \n\nЕсли реально её получить хотите, придётся нормально заплатить. Двадцать... Нет, пятьдесят кусков! И не пытайся торговаться, это ваше цевьё уже закопано в надёжном месте, сам не найдёшь. Так чё, готов заплатить за свой научный интерес или нет?",
"68400926706e0a55e90b0007 failMessageText": "",
"68400926706e0a55e90b0007 successMessageText": "Нормально, нормально! Механик ещё ладно, он отбитый по теме пушек, но от тебя я не ожидал, что за какое-то цевьё обоссанное такие деньги заплатишь. Но мне-то чё, если вам надо, ковыряйтесь в своём хламе. Оно ж даже по размеру ни на один калаш не сядет! \n\nЩа я пацанам своим инфу передам, они подкинут вашу детальку в точку передачи.",
"684180b0b22d582a57c5a8d7": "Передать Евро",
"68400926706e0a55e90b0007 acceptPlayerMessage": "",
"68400926706e0a55e90b0007 declinePlayerMessage": "",
"68400926706e0a55e90b0007 completePlayerMessage": "",
"68400953506db3b4db0700e7 name": "Честная цена. Часть 2",
"68400953506db3b4db0700e7 description": "Ну чё, ещё не жалеешь о своей покупке? На будущее тебе скажу, такие вот ботаны, как Механик, самые гнилые схемы и проворачивают! Он свою выгоду получит, а ты даже не поймёшь, что тебя кинули. Ладно, не быкуй только! Я ж тебе по чесноку говорю, как есть.\n\nЕсли всё ещё уверен в этой «разработке», забрать её сможешь на заброшенной лесопилке у деревни в лесу, там ещё пост ООН недалеко. Пацаны уже всё доставили. Но я б на твоём месте не задерживался, мало ли кто там шарится. Если до тебя кто-то сопрёт, ко мне с претензиями не приходи!",
"68400953506db3b4db0700e7 failMessageText": "",
"68400953506db3b4db0700e7 successMessageText": "Чё, забрал уже? Ну и молодца, кабанчик из тебя что надо. Когда надоест с Механиком хернёй страдать, ты знаешь, к кому идти. И это... детальку если сможешь вернуть, хорошо будет. Может и схемы какие намутим, а то я походу реально ценную инфу про этот калаш заморский нашёл...",
"6841814c20c9a6c68800ab79": "Найти цевьё АК-50 на заброшенной лесопилке на локации Лес",
"6841815b3d5e6b08d1f6e474": "Найти место закладки",
"684181808b21759f04e1c4ee": "Завершить задание \"Клуб по интересам\"",
"68400953506db3b4db0700e7 acceptPlayerMessage": "",
"68400953506db3b4db0700e7 declinePlayerMessage": "",
"68400953506db3b4db0700e7 completePlayerMessage": "",
"6848100b00afffa81f09e365 name": "Новое начало",
"6848100b00afffa81f09e365 description": "Привет, брат! Не скучаешь? Да ладно, я уже прикалываюсь! Понял уже, что ты всё наперёд знаешь.\n\nИз списков мощных ребят тебе выпадать нельзя. Как минимум, потому что это мою репутацию понизит. Что я за человек такой, если мой кандидат слетел всего на третьей просьбе? То-то же, так что ты это, не расслабляйся.\n\nНу, и я уже говорил в прошлый раз – что-то готовится. А мы с тобой должны держать руку на пульсе.\n\nВот тебе список того, что в этот раз принести надо. Да, и не только. В общем, ты парень умный, разберёшься. Иди давай, и сделай всё по красоте!",
"6848100b00afffa81f09e365 failMessageText": "",
"6848100b00afffa81f09e365 successMessageText": "Отлично-отлично. Не подводишь меня, брат. Мой авторитет на месте, а твой даже растёт. Это ли не идеальный результат, а?",
"6848100b00afffa81f09e369": "Убить бойцов ЧВК",
"6848100b00afffa81f09e36b": "Совершить переход с Лаборатории на Улицы Таркова",
"6848100b00afffa81f09e36d": "Передать найденный в рейде предмет: Фигурка бойца BEAR",
"6848100b00afffa81f09e36e": "Передать найденный в рейде предмет: Фигурка Депутата Муткевича",
"6848100b00afffa81f09e36f": "Передать найденный в рейде предмет: Фигурка Киллы",
"6848100b00afffa81f09e370": "Передать найденный в рейде предмет: Фигурка Решалы",
"6848100b00afffa81f09e371": "Передать найденный в рейде предмет: Фигурка Рыжего",
"6848100b00afffa81f09e372": "Передать найденный в рейде предмет: Фигурка Дикого",
"6848100b00afffa81f09e373": "Передать найденный в рейде предмет: Фигурка Тагиллы",
"6848100b00afffa81f09e374": "Передать найденный в рейде предмет: Фигурка бойца USEC",
"6848100b00afffa81f09e375": "Передать найденный в рейде предмет: Фигурка Сектанта",
"6848100b00afffa81f09e376": "Передать найденный в рейде предмет: Фигурка Дэна",
"6848116061809d65b8503617": "Выжить и выйти на локации Улицы Таркова",
"684811fa366152006bebe08b": "Передать любую лимитированную фигурку из Лабиринта",
"684812156189183883f13947": "Убить Рейдеров",
"6848100b00afffa81f09e365 acceptPlayerMessage": "",
"6848100b00afffa81f09e365 declinePlayerMessage": "",
"6848100b00afffa81f09e365 completePlayerMessage": "",
"68481881f43abfdda2058369 name": "Новое начало",
"68481881f43abfdda2058369 description": "Ай, какие люди! Всегда рад тебя видеть на своём пороге! Не скучаешь? Чего? Опять начинаю? Да ладно, весело же!\n\nЛадно, давай к делу. Списки постоянно обновляются, а ты помнишь, что на кону наша с тобой репутация. Знаешь же, что в Таркове без нее никуда! Так что надо соответствовать. И выполнять задания. Мне как раз передали новый список…\n\nЧто, часть из этого ты уже делал? Ну и ладно, тебе же проще. Во всём надо искать светлую сторону, брат! Иначе долго не проживёшь. Давай, вперёд, покажи всем этим составителям списков мощных ребят, что ты крут!",
"68481881f43abfdda2058369 failMessageText": "",
"68481881f43abfdda2058369 successMessageText": "Справился? Красавец, брат! Можно было и побыстрее, но в задании про время ничего не было, так что дружно забьём на это дело.",
"68481881f43abfdda205836d": "Убить бойцов ЧВК",
"68481881f43abfdda205836f": "Совершить переход с Лаборатории на Улицы Таркова",
"68481881f43abfdda2058371": "Передать найденный в рейде предмет: Фигурка бойца BEAR",
"68481881f43abfdda2058372": "Передать найденный в рейде предмет: Фигурка Депутата Муткевича",
"68481881f43abfdda2058373": "Передать найденный в рейде предмет: Фигурка Киллы",
"68481881f43abfdda2058374": "Передать найденный в рейде предмет: Фигурка Решалы",
"68481881f43abfdda2058375": "Передать найденный в рейде предмет: Фигурка Рыжего",
"68481881f43abfdda2058376": "Передать найденный в рейде предмет: Фигурка Дикого",
"68481881f43abfdda2058377": "Передать найденный в рейде предмет: Фигурка Тагиллы",
"68481881f43abfdda2058378": "Передать найденный в рейде предмет: Фигурка бойца USEC",
"68481881f43abfdda2058379": "Передать найденный в рейде предмет: Фигурка Сектанта",
"68481881f43abfdda205837a": "Передать найденный в рейде предмет: Фигурка Дэна",
"68481a8eda10b760b3b1a73f": "Убить Отступников",
"68483a05801f8d9e40ac05b1": "Совершить переход с Улиц Таркова на Развязку",
"68483a48dcb8688e2454ab7b": "Выжить и выйти с локации Развязка",
"68486a0eda4828c0772e337b": "Передать любую найденную в рейде лимитированную фигурку из Лабиринта",
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Всё спокойно, значит? Хорошо, молодец, боец.",
@@ -30165,6 +30459,12 @@
"67fce0c2f18dc20eae02240b name": "Звезда по имени Солнце",
"67fce0c2f18dc20eae02240b description": "Убить сектанта, используя Гранатомет РШГ-2",
"67fce0c2f18dc20eae02240b successMessage": "",
"6842c25bd02bc07d70054019 name": "Не сбавляя темп",
"6842c25bd02bc07d70054019 description": "Получить третий уровень Престижа",
"6842c25bd02bc07d70054019 successMessage": "",
"6842c27a38482d35ac0bd847 name": "Всё выше и выше",
"6842c27a38482d35ac0bd847 description": "Получить четвертый уровень Престижа",
"6842c27a38482d35ac0bd847 successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Слот 1",
@@ -30434,9 +30734,31 @@
"67adb4843fec17bf3ea9452e name": "Логово Минотавра",
"67adb4843fec17bf3ea9452e description": "Этот потолок не имеет никаких излишеств. Но Минотавру они и не нужны.",
"67adb48fd05a78f5a5fc5260": "Можно получить только в рамках особых событий",
"6841c93d40f98448eafbe5fe name": "Охотничья мишень Дартс",
"6841c93d40f98448eafbe5fe description": "Мишень для тех, кто скучает по бросанию дротиков.",
"6841c9574825e805c3327a05": "Достигнуть 4 уровня Престижа",
"6841cb6ad7c6601d14c49c8d": "Получить четвертый уровень Престижа",
"6841ca25a3202eb499cdee19 name": "Охотничья мишень Крыса",
"6841ca25a3202eb499cdee19 description": "Мишень для противников крыс.",
"6841ca3d1c125de28023dd26": "Достигнуть 5 уровня Престижа",
"6841cb482aa4735bc953dccb": "Получить пятый уровень Престижа",
"6841caa796e886f328e69606 name": "Охотничья мишень Ворона",
"6841caa796e886f328e69606 description": "Вороны — умные птицы. Но в виде картинки они точно вас не перехитрят.",
"6841cab605ee9c46159b7e05": "Достигнуть 3 уровня Престижа",
"6841cbabc58389310416c098": "Получить третий уровень Престижа",
"6841cc541c407f8aa0e4f62b name": "Белые стены",
"6841cc541c407f8aa0e4f62b description": "Белые стены сделают Убежище визуально больше. Больше похожим на офис.",
"6841cc7af143c60fc8dfbd26": "Получить пятый уровень Престижа",
"6841ccf5cf47eb290b9fb24e name": "Серое дерево",
"6841ccf5cf47eb290b9fb24e description": "Хороший светлый пол. Помогает не нагружать глаза. А ещё на нём почти не видна пыль.",
"6841cd092c726cdf75b45770": "Получить четвертый уровень Престижа",
"6841cdb93de393b52dd49865 name": "Потолок с золотом",
"6841cdb93de393b52dd49865 description": "Белый потолок с золотыми вставками. Кто-то потрудился, вырисовывая эти полосы.",
"6841cdc772532c1991fe1615": "Получить шестой уровень Престижа",
"672df12f97f0469cea52f55e name": "Престиж 1",
"675d7242b85061aa2017c341": "Завершить задание \"Вам посылка\"",
"672df4281ab8d9c8849a0c88 name": "Престиж 2",
"675d71d1bbb25a353d697179": "Достичь 20 уровень навыка \"Жизнеспособность\"",
"6760a03623016948ee282ea8 name": ""
}
"683da91d6f472cfa738c52f2 name": "",
"6842f121000d98ce33b9a60f name": ""
}
@@ -7418,6 +7418,12 @@
"5fc613c80b735e7b024c76e2 Name": "",
"5fc613c80b735e7b024c76e2 ShortName": "",
"5fc613c80b735e7b024c76e2 Description": "",
"5fc614390b735e7b024c76e6 Name": "",
"5fc614390b735e7b024c76e6 ShortName": "",
"5fc614390b735e7b024c76e6 Description": "",
"5fc6144b0b735e7b024c76e7 Name": "",
"5fc6144b0b735e7b024c76e7 ShortName": "",
"5fc6144b0b735e7b024c76e7 Description": "",
"5fc614da00efd824885865c2 Name": "Sergei",
"5fc614da00efd824885865c2 ShortName": "Sergei",
"5fc614da00efd824885865c2 Description": "Sergei",
@@ -7427,6 +7433,9 @@
"5fc615110b735e7b024c76ea Name": "Josh",
"5fc615110b735e7b024c76ea ShortName": "Josh",
"5fc615110b735e7b024c76ea Description": "Josh",
"5fc6155b0b735e7b024c76ec Name": "",
"5fc6155b0b735e7b024c76ec ShortName": "",
"5fc6155b0b735e7b024c76ec Description": "",
"5fc64ea372b0dd78d51159dc Name": "Cultist knife",
"5fc64ea372b0dd78d51159dc ShortName": "Nôž",
"5fc64ea372b0dd78d51159dc Description": "A knife of a strange shape and with strange signs, taken from the cultists. Seems like it is used as a ritual knife, but apparently it's not limited to this use. It has technological changes in the design intended for the use of toxic substances - it's better not to touch the blade.",
@@ -8138,6 +8147,9 @@
"617aa4dd8166f034d57de9c5 Name": "M18 smoke grenade (Green)",
"617aa4dd8166f034d57de9c5 ShortName": "M18",
"617aa4dd8166f034d57de9c5 Description": "The M18 smoke grenade made in the USA. Used in the US Army since the Second World War. The smoke is green-colored.",
"617be9e4e02b3b3fa50fa8f2 Name": "",
"617be9e4e02b3b3fa50fa8f2 ShortName": "",
"617be9e4e02b3b3fa50fa8f2 Description": "",
"617fd91e5539a84ec44ce155 Name": "RGN hand grenade",
"617fd91e5539a84ec44ce155 ShortName": "RGN",
"617fd91e5539a84ec44ce155 Description": "RGN (Ruchnaya Granata Nastupatel'naya - \"Offensive Hand Grenade\") is an offensive anti-personnel fragmentation hand grenade of impact action.",
@@ -9980,6 +9992,9 @@
"6464d870bb2c580352070cc4 Name": "PK bipod",
"6464d870bb2c580352070cc4 ShortName": "PK bipod",
"6464d870bb2c580352070cc4 Description": "A standard-issue bipod for Kalashnikov Machine gun. Manufactured by V.A. Degtyarev Plant.",
"646e46d8f5438077af029fdb Name": "",
"646e46d8f5438077af029fdb ShortName": "",
"646e46d8f5438077af029fdb Description": "",
"646f62fee779812413011ab7 Name": "Zenit 2D flashlight",
"646f62fee779812413011ab7 ShortName": "2D",
"646f62fee779812413011ab7 Description": "The 2D tactical flashlight, installed on a special mount. Manufactured by Zenit.",
@@ -13667,6 +13682,9 @@
"6719023b612cc94b9008e78c Name": "AA-12 stock assembly (TerraGroup)",
"6719023b612cc94b9008e78c ShortName": "AA-12 LABS",
"6719023b612cc94b9008e78c Description": "A standard-issue stock assembly for the Auto Assault-12 shotgun. TerraGroup version.",
"67199b72b79a024c140a17b7 Name": "",
"67199b72b79a024c140a17b7 ShortName": "",
"67199b72b79a024c140a17b7 Description": "",
"671a406a6d315b526708f103 Name": "Package of graphics cards",
"671a406a6d315b526708f103 ShortName": "Balík",
"671a406a6d315b526708f103 Description": "A package sealed with a large amount of tape. It's quite battered, but the contents appear to be intact.",
@@ -14439,10 +14457,10 @@
"67614b3ab8c060ebb204b106 ShortName": "Khorovod",
"67614b3ab8c060ebb204b106 Description": "An armband by which the participants of the Khorovod can recognize each other. Without it, you cannot be part of the celebration.",
"67614b542eb91250020f2b86 Name": "Armband (Prestige 1)",
"67614b542eb91250020f2b86 ShortName": "Prestige 1",
"67614b542eb91250020f2b86 ShortName": "Prestige",
"67614b542eb91250020f2b86 Description": "This armband will help demonstrate your status in Tarkov.",
"67614b6b47c71ea3d40256d7 Name": "Armband (Prestige 2)",
"67614b6b47c71ea3d40256d7 ShortName": "Prestige 2",
"67614b6b47c71ea3d40256d7 ShortName": "Prestige",
"67614b6b47c71ea3d40256d7 Description": "These armbands are only for the best of the best.",
"67614e3a6a90e4f10b0b140d Name": "Festive airdrop supply crate",
"67614e3a6a90e4f10b0b140d ShortName": "Festive airdrop supply crate",
@@ -14734,11 +14752,11 @@
"67a5f9a193f7b62b6b0f6576 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The print is chosen in hopes of intimidating opponents.",
"67a5f9c8fafb8efd440694b8 Name": "Lower half-mask (Balaclavas Green)",
"67a5f9c8fafb8efd440694b8 ShortName": "Half-mask",
"67a5f9c8fafb8efd440694b8 Description": "A piece of green cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5f9c8fafb8efd440694b8 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5f9e7f7041a25760dda38 Name": "Lower half-mask (Balaclavas Red)",
"67a5f9e7f7041a25760dda38 ShortName": "Half-mask",
"67a5f9e7f7041a25760dda38 Description": "A piece of red cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas)",
"67a5f9e7f7041a25760dda38 Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a5fa01fafb8efd440694ba Name": "Lower half-mask (Balaclavas White)",
"67a5fa01fafb8efd440694ba ShortName": "Half-mask",
"67a5fa01fafb8efd440694ba Description": "A piece of cloth, typically a bandana, covering the face from nose and below, is the most typical attribute of a street gang member. The colorful print will highlight your personality.",
"67a9cc9cf05be177170bcd76 Name": "Balaclava (Green)",
@@ -15005,15 +15023,51 @@
"67b72c64f753cf9f7a0a07aa Name": "LATAM Drops Event 2025 case (Epic)",
"67b72c64f753cf9f7a0a07aa ShortName": "Twitch",
"67b72c64f753cf9f7a0a07aa Description": "",
"67b877e7d2dc6a01d5059dd9 Name": "",
"67b877e7d2dc6a01d5059dd9 ShortName": "",
"67b877e7d2dc6a01d5059dd9 Description": "",
"67b877f796760fe84f086992 Name": "",
"67b877f796760fe84f086992 ShortName": "",
"67b877f796760fe84f086992 Description": "",
"67cad1ec19b006e9e50f44d6 Name": "Locked equipment crate (BattlePass 0)",
"67cad1ec19b006e9e50f44d6 ShortName": "Equipment (BP 0)",
"67cad1ec19b006e9e50f44d6 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. But first, you need to find a way to open this box.",
"67cad3226bf74131800752b7 Name": "Unlocked equipment crate (BattlePass 0)",
"67cad3226bf74131800752b7 ShortName": "Equipment (BP 0)",
"67cad3226bf74131800752b7 Description": "A reward for progress in BattlePass Season 0. It contains various equipment to help you survive and kill in the harsh world of Tarkov. The lock has been crudely broken, which means there are no more obstacles between you and the contents of the box.",
"67d0576f29f580ebc10efd08 Name": "TheAKGuy AK-50 .50 BMG sniper rifle",
"67d0576f29f580ebc10efd08 ShortName": "AK-50",
"67d0576f29f580ebc10efd08 Description": "The AK-50 semi-automatic anti-materiel rifle is an experimental first-of-a-kind project that adapts the Kalashnikov platform to use the .50 BMG cartridge. The AK-50 has outstanding penetration and range, making it a very powerful sniper rifle. This prototype was developed by a firearms manufacturer and YouTube blogger Brandon Herrera and co. as part of The AK Guy LTD.",
"67d3ed3271c17ff82e0a5b0b Name": "Key case",
"67d3ed3271c17ff82e0a5b0b ShortName": "Keys",
"67d3ed3271c17ff82e0a5b0b Description": "This case is the ultimate solution to the problem of hoarding various keys in the stash, helping to store them in one place.",
"67d416e19bd76ef20f0e743b Name": "AK-50 dust cover",
"67d416e19bd76ef20f0e743b ShortName": "AK-50 DC",
"67d416e19bd76ef20f0e743b Description": "A receiver dust cover with integrated Picatinny rail for the AK-50, allowing installation of optics. Manufactured by The AK Guy LTD.",
"67d4178bffb910d21f04720a Name": "AK-50 .50 BMG 24 inch barrel",
"67d4178bffb910d21f04720a ShortName": "AK-50 24\"",
"67d4178bffb910d21f04720a Description": "A 24 inch (612mm) barrel for the AK-50, manufactured by The AK Guy LTD.",
"67d417c023ec241bb70d4896 Name": "AK-50 M-LOK handguard with gas tube",
"67d417c023ec241bb70d4896 ShortName": "AK-50",
"67d417c023ec241bb70d4896 Description": "A handguard and gas tube for the AK-50. The handguard is equipped with an M-LOK standard interface for attaching additional equipment, and also has picatinny rail for mounting tactical devices. Manufactured by The AK Guy LTD.",
"67d41883f378a36c4706eeb7 Name": "AK-50 .50 BMG muzzle brake",
"67d41883f378a36c4706eeb7 ShortName": "AK-50 MB",
"67d41883f378a36c4706eeb7 Description": "A muzzle brake for the AK-50. Reduces recoil and muzzle rise. Manufactured by The AK Guy LTD.",
"67d418d0ffb910d21f04720e Name": "M82A1 .50 BMG 10-round magazine",
"67d418d0ffb910d21f04720e ShortName": "M82",
"67d418d0ffb910d21f04720e Description": "A 10-round .50 BMG magazine for the M82A1 sniper rifle, manufactured by Barrett Firearms.",
"67d41936f378a36c4706eeb9 Name": ".50 BMG HP",
"67d41936f378a36c4706eeb9 ShortName": "HP",
"67d41936f378a36c4706eeb9 Description": "A .50 BMG (12.7x99mm NATO) hollow point cartridge, developed in the USA. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact, however the hollow point bullet design does not allow it to penetrate armor effectively.",
"67dc212493ce32834b0fa446 Name": ".50 BMG M21",
"67dc212493ce32834b0fa446 ShortName": "M21",
"67dc212493ce32834b0fa446 Description": "A .50 BMG (12.7x99mm NATO) M21 \"headlight\" high-visibility tracer cartridge, developed in the USA and adopted in 1923 for Browning M2 machine guns, primarily designed to destroy light armored vehicles and neutralize enemy personnel behind light cover. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67dc255ee3028a8b120efc48 Name": ".50 BMG M33",
"67dc255ee3028a8b120efc48 ShortName": "M33",
"67dc255ee3028a8b120efc48 Description": "A .50 BMG (12.7x99mm NATO) M33 Ball cartridge, developed in the USA and adopted in 1923 for Browning M2 machine guns, primarily designed to destroy light armored vehicles and neutralize enemy personnel behind light cover. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67dc2648ba5b79876906a166 Name": ".50 BMG M903 SLAP",
"67dc2648ba5b79876906a166 ShortName": "M903",
"67dc2648ba5b79876906a166 Description": "A .50 BMG (12.7x99mm NATO) M903 SLAP (Saboted Light Armor Penetrator) cartridge. Created by placing a 7.62 armor-piercing bullet in a polymer container that separates after leaving the barrel. The cartridge has significant stopping power and is capable of inflicting devastating damage to the target upon impact.",
"67e183377c6c2011970f3149 Name": "Ariadne symbol key",
"67e183377c6c2011970f3149 ShortName": "Ariadne",
"67e183377c6c2011970f3149 Description": "Someone had made a barely visible mark on this key, resembling a ball of thread. Although, it could have simply been left by careless storage.",
@@ -15035,6 +15089,135 @@
"67f924b1b07831a6ef0ce317 Name": "Unusual leather rig poster",
"67f924b1b07831a6ef0ce317 ShortName": "Voroshka",
"67f924b1b07831a6ef0ce317 Description": "It seems unlikely that similar pieces of equipment are available in present-day Tarkov. Judging by the condition of the poster, it was obviously made during peacetime.",
"683dacd53a9ebd9a650ce8a0 Name": "Honor",
"683dacd53a9ebd9a650ce8a0 ShortName": "Honor",
"683dacd53a9ebd9a650ce8a0 Description": "A great mannequin to help you visualize how the uniform would look on you if you decide to stand guard.",
"683dadc8675dbd613909cabb Name": "Jomoon",
"683dadc8675dbd613909cabb ShortName": "Jomoon",
"683dadc8675dbd613909cabb Description": "The creator of this mannequin was clearly into very bizarre things.",
"683db01a0dea92512e020550 Name": "T-pose",
"683db01a0dea92512e020550 ShortName": "T-pose",
"683db01a0dea92512e020550 Description": "A pose of a very dominance-asserting NPC.",
"683dc67e5e8c96c28e0ce6f8 Name": "Gilded ceiling",
"683dc67e5e8c96c28e0ce6f8 ShortName": "Gilded ceiling",
"683dc67e5e8c96c28e0ce6f8 Description": "A white ceiling with gold inlays. Someone went to a lot of trouble to paint these stripes.",
"683dc6aa57f38ea79c0073f1 Name": "White walls",
"683dc6aa57f38ea79c0073f1 ShortName": "White walls",
"683dc6aa57f38ea79c0073f1 Description": "White walls will make the Hideout look more spacious. Like an office.",
"683dc6c1baa42e2bb4024922 Name": "Gray wood",
"683dc6c1baa42e2bb4024922 ShortName": "Gray wood",
"683dc6c1baa42e2bb4024922 Description": "A nice light-colored floor. Helps keep the eyes free of strain. It also keeps the dust almost invisible.",
"683ed6aed885538c4102d8c8 Name": "AK-50 barrel",
"683ed6aed885538c4102d8c8 ShortName": "AK-50",
"683ed6aed885538c4102d8c8 Description": "A 24 inch barrel for the AK-50 sniper rifle.",
"683ed6c2e4b1dd7ec4069dc8 Name": "AK-50 dust cover",
"683ed6c2e4b1dd7ec4069dc8 ShortName": "AK-50",
"683ed6c2e4b1dd7ec4069dc8 Description": "A receiver dust cover for the AK-50 sniper rifle.",
"683ed6ccd9a096739b0c9228 Name": "AK-50 handguard with gas block",
"683ed6ccd9a096739b0c9228 ShortName": "AK-50",
"683ed6ccd9a096739b0c9228 Description": "An M-LOK handguard with railed gas block for the AK-50 sniper rifle.",
"68418091b5b0c9e4c60f0e7a Name": "Dogtag USEC",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"684180bc51bf8645f7067bc8 Name": "Dogtag BEAR",
"684180bc51bf8645f7067bc8 ShortName": "BEAR",
"684180bc51bf8645f7067bc8 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"684180ee9b6d80d840042e8a Name": "Dogtag USEC",
"684180ee9b6d80d840042e8a ShortName": "USEC",
"684180ee9b6d80d840042e8a Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"684181208d035f60230f63f9 Name": "Dogtag BEAR",
"684181208d035f60230f63f9 ShortName": "BEAR",
"684181208d035f60230f63f9 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"6841818c20f5c35b53017729 Name": "Dogtag (Prestige 3)",
"6841818c20f5c35b53017729 ShortName": "Dogtag",
"6841818c20f5c35b53017729 Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. It has an unusual golden tint to it.",
"6841b11620f5c35b5301772b Name": "Dogtag (Prestige 4)",
"6841b11620f5c35b5301772b ShortName": "Dogtag",
"6841b11620f5c35b5301772b Description": "A special stainless steel army dogtag serving the purpose of quickly identifying the wounded and deceased in combat. Not every PMC can get one of these.",
"6841b179322db20d190b4b99 Name": "Get a Life poster",
"6841b179322db20d190b4b99 ShortName": "Poster",
"6841b179322db20d190b4b99 Description": "The girl on the poster is definitely hinting at something. But you're stronger than her urging.",
"6841b1ff51bf8645f7067bca Name": "Get a Paw poster",
"6841b1ff51bf8645f7067bca ShortName": "Poster",
"6841b1ff51bf8645f7067bca Description": "We all need a loyal friend. Even if just in the arms of a 2d girl.",
"6841b2506c1fcc41ed0db319 Name": "Armband (Prestige 3)",
"6841b2506c1fcc41ed0db319 ShortName": "Prestige",
"6841b2506c1fcc41ed0db319 Description": "An armband for distinguished warriors.",
"6841b3463fcc417de40a6768 Name": "Armband (Prestige 4)",
"6841b3463fcc417de40a6768 ShortName": "Prestige",
"6841b3463fcc417de40a6768 Description": "You need to work really hard to earn this armband.",
"6841b3ab322db20d190b4b9b Name": "Armband (Prestige 5)",
"6841b3ab322db20d190b4b9b ShortName": "Prestige",
"6841b3ab322db20d190b4b9b Description": "An armband available only to a handful of people in Tarkov.",
"6841b6b674a3c16f5e03d653 Name": "PMC Origins figurine",
"6841b6b674a3c16f5e03d653 ShortName": "Origins",
"6841b6b674a3c16f5e03d653 Description": "This Tarko figurine depicts a very green PMC just setting foot in the city. There must be two more like this one out there somewhere.",
"6841c50c3fcc417de40a676a Name": "Crow target",
"6841c50c3fcc417de40a676a ShortName": "Crow target",
"6841c50c3fcc417de40a676a Description": "Crows are clever birds. But in image form, they certainly won't outsmart you. Unless?",
"6841c7963fcc417de40a676c Name": "Darts target",
"6841c7963fcc417de40a676c ShortName": "Darts target",
"6841c7963fcc417de40a676c Description": "A target for those who miss all the bar games.",
"6841c7f03fcc417de40a676e Name": "Rat target",
"6841c7f03fcc417de40a676e ShortName": "Rat target",
"6841c7f03fcc417de40a676e Description": "A target for sneaky rodent hunters.",
"684696e8199c6a77dc0f9bc8 Name": "Rob",
"684696e8199c6a77dc0f9bc8 ShortName": "Rob",
"684696e8199c6a77dc0f9bc8 Description": "A voice of the PMC USEC operator who came to Tarkov from far away. He is strong, experienced, and ready to fight.",
"6846990ed5d969efe3078408 Name": "Vitaly",
"6846990ed5d969efe3078408 ShortName": "Vitaly",
"6846990ed5d969efe3078408 Description": "A voice of the PMC BEAR operator who has seen this life through and is only looking for one last thing.",
"6847e3010f5df094fb072599 Name": "bear_upper_g99",
"6847e3010f5df094fb072599 ShortName": "",
"6847e3010f5df094fb072599 Description": "",
"6847e338c9626d92b40d2789 Name": "",
"6847e338c9626d92b40d2789 ShortName": "",
"6847e338c9626d92b40d2789 Description": "",
"6847e3cc13183100990dd1c8 Name": "",
"6847e3cc13183100990dd1c8 ShortName": "",
"6847e3cc13183100990dd1c8 Description": "",
"6847e663f43abfdda205835a Name": "Blue Hawaii shirt",
"6847e663f43abfdda205835a ShortName": "Hawaii shirt",
"6847e663f43abfdda205835a Description": "Hawaii shirt",
"6847e76f3f4cd20a97097a93 Name": "Green Hawaii shirt",
"6847e76f3f4cd20a97097a93 ShortName": "Hawaii shirt",
"6847e76f3f4cd20a97097a93 Description": "Hawaii shirt",
"6847e7ec93e9ca7c5b08fcea Name": "",
"6847e7ec93e9ca7c5b08fcea ShortName": "",
"6847e7ec93e9ca7c5b08fcea Description": "",
"685d07f8c18489365003668c Name": "bear_upper_g99",
"685d07f8c18489365003668c ShortName": "",
"685d07f8c18489365003668c Description": "",
"685d0819f16ea024b00ca192 Name": "",
"685d0819f16ea024b00ca192 ShortName": "",
"685d0819f16ea024b00ca192 Description": "",
"685d0844a4c03ac885004b90 Name": "",
"685d0844a4c03ac885004b90 ShortName": "",
"685d0844a4c03ac885004b90 Description": "",
"685d087ae21676b134054474 Name": "",
"685d087ae21676b134054474 ShortName": "",
"685d087ae21676b134054474 Description": "",
"685d08a741b02568210760ca Name": "",
"685d08a741b02568210760ca ShortName": "",
"685d08a741b02568210760ca Description": "",
"685d08ebc18489365003668e Name": "",
"685d08ebc18489365003668e ShortName": "",
"685d08ebc18489365003668e Description": "",
"685d092aed4e253164064e05 Name": "USEC Day Off",
"685d092aed4e253164064e05 ShortName": "Tactical shorts",
"685d092aed4e253164064e05 Description": "Tactical shorts",
"685d0967cb2cba9e8f02e7b3 Name": "BEAR Vacation",
"685d0967cb2cba9e8f02e7b3 ShortName": "Tactical shorts",
"685d0967cb2cba9e8f02e7b3 Description": "Tactical shorts",
"685d097e97aa09c6b60df9f5 Name": "BEAR Vacation",
"685d097e97aa09c6b60df9f5 ShortName": "Hawaii shirt",
"685d097e97aa09c6b60df9f5 Description": "Hawaii shirt",
"685d09b4029bc4c1190e819d Name": "USEC Day Off",
"685d09b4029bc4c1190e819d ShortName": "Hawaii shirt",
"685d09b4029bc4c1190e819d Description": "Hawaii shirt",
"685ebb9dd8500c455802e9c8 Name": "Grenadier t-shirt",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Merch t-shirt",
" V-ex_light": "Cesta k autu pri vojenskej základni",
" Voip/DisabledForOffline": "VoIP je nedostupný v offline režime",
" kg": " kg",
@@ -15203,6 +15386,7 @@
"AVAILABLE ON LEVEL {0}": "DOSTUPNÉ NA ÚROVNI {0}",
"Abort": "ZRUŠIŤ",
"About half": "Asi polovica",
"Accept (Y)": "ACCEPT (Y)",
"AcceptFriendsRequest": "Potvrdiť žiadosť o priateľstvo",
"AcceptInvitation": "Prijať pozvánku",
"AcceptScreen/ServerSettingsButton": "Nastavenia raidu",
@@ -15301,6 +15485,7 @@
"Arena/Armory/ItemNotAvailabeToUnlockErrorHeader": "Na odomknutie",
"Arena/Armory/ItemNotFoundErrorDescription": "Tento predmet nebol nájdený",
"Arena/Armory/ItemNotFoundErrorHeader": "Položka nebola nájdená",
"Arena/Armory/LevelReward/lockedState": "Locked",
"Arena/Armory/LevelReward/readyToUlockState": "Pripravené",
"Arena/Armory/LevelReward/unlockedState": "Pripravené",
"Arena/AthletePreset/NonUnlockable": "Items from Athlete preset. Could have been obtained in 2024.",
@@ -15344,6 +15529,7 @@
"Arena/CustomGames/Create/Maps": "Lokácia",
"Arena/CustomGames/Create/Modes": "Módy",
"Arena/CustomGames/Create/OcclusionCullingEnabled": "Player culling",
"Arena/CustomGames/Create/StartScoresEnabled": "Set match score",
"Arena/CustomGames/Create/SubModes": "Podmódy",
"Arena/CustomGames/Create/TournamentMode": "Turnajový mód",
"Arena/CustomGames/Create/TournamentSettings": "Turnajové nastavenie",
@@ -15444,6 +15630,8 @@
"Arena/Presets/Tooltips/Medicine": "Liečivo",
"Arena/Presets/Tooltips/Other": "Ostatné",
"Arena/Presets/Tooltips/Weapon": "Zbraň",
"Arena/RefillContainer": "Equipment refill container",
"Arena/RefillContainer/RefillComplete": "Equipment refilled!",
"Arena/Rematching": "Návrat do hry s vysokou prioritou",
"Arena/Rematching/NoServer": "Z technických dôvodov nebol nájdený server. Vrátenie k vyhľadávaniu hry.",
"Arena/RyzhyEdition/NonUnlockable": "Could have been obtained when purchasing Ryzhy Edition.",
@@ -15499,6 +15687,7 @@
"Arena/UI/Disband-Game/Title": "ROZPUSTENIE HRY",
"Arena/UI/Excluded-from-tre-group": "- Budete vyhodený zo skupiny",
"Arena/UI/Game-Found": "Hra nájdená",
"Arena/UI/LEAVE (N)": "LEAVE (N)",
"Arena/UI/Leave": "ODÍSŤ",
"Arena/UI/Leave-Game/Text1": "Naozaj chcete opustiť hru?",
"Arena/UI/Leave-Game/Text2": "Server bude rozpustený",
@@ -15513,6 +15702,7 @@
"Arena/UI/Match_leaving_permitted_header": "You can leave this match without penalty.",
"Arena/UI/PresetResetToDefault": "Nastavenia nasledujúcich šablón bolo resetované na základné:",
"Arena/UI/Return": "VRÁTIŤ",
"Arena/UI/Return (Y)": "RETURN (Y)",
"Arena/UI/Return-to-match": "RETURN TO MATCH",
"Arena/UI/Selection/Blocked": "Šablóna obsadená",
"Arena/UI/Waiting": "Waiting...",
@@ -15561,6 +15751,10 @@
"Arena/Widgets/pickup object": "Pick up the device",
"Arena/Widgets/prepare to fight": "Prepare to fight",
"Arena/Widgets/ranked": "Ranked mode",
"Arena/Widgets/refill container blocked": "Container locked",
"Arena/Widgets/refill container cooldown": "Unavailable",
"Arena/Widgets/refill container ready": "Refill equipment",
"Arena/Widgets/refill container refilling": "Refilling",
"Arena/Widgets/round lose": "Round lost",
"Arena/Widgets/round start in": "Round starts in",
"Arena/Widgets/round win": "Round won",
@@ -15768,6 +15962,7 @@
"BTR": "BTR",
"BULLET SPEED": "BULLET VELOCITY",
"BUY": "BUY",
"BUY (Y)": "BUY (Y)",
"BUY PARTS": "BUY PARTS",
"Back": "BACK",
"Backpack": "Backpack",
@@ -15850,6 +16045,7 @@
"CIRCLEOFCULTISTS": "Cultist Circle",
"CLEAR": "CLEAR",
"CLONE": "Duplicate",
"CLOSE (Y)": "CLOSE (Y)",
"CLOTHING UNLOCK": "CLOTHING UNLOCK",
"COMETOME": "COME TO ME",
"COMMAND": "COMMAND",
@@ -15899,6 +16095,7 @@
"Can't open context menu while searching": "Can't open context menu while searching",
"Can't place beacon here": "Can't place a beacon here",
"Cancel": "Cancel",
"Cancel (N)": "CANCEL (N)",
"CancelInvite": "Cancel invitation",
"CancelLookingForGroup": "Stop looking for a group",
"Captcha counter ended": "You failed the verification",
@@ -15991,6 +16188,7 @@
"ClothingPanel/InternalObtain": "Trader purchase conditions:",
"ClothingPanel/LoyaltyLevel": "Trader\nLoyalty Level:",
"ClothingPanel/PlayerLevel": "Player\nLevel:",
"ClothingPanel/PrestigeLevel": "Prestige\nLevel:",
"ClothingPanel/RequiredAchievements": "Achievement:",
"ClothingPanel/RequiredPayment": "Required\nPayment:",
"ClothingPanel/RequiredQuest": "Completed\nTask:",
@@ -16533,6 +16731,7 @@
"ERewardType/CustomizationDirect": "Customization",
"ERewardType/ExtraDailyQuest": "Task",
"ERewardType/Skill/Description": "Permanently increases {0} ({1})",
"ERewardType/Stub": "Unique ID",
"ESSAOMode/ColoredHighestQuality": "colored ultra",
"ESSAOMode/FastPerformance": "high performance",
"ESSAOMode/FastestPerformance": "max performance",
@@ -16955,9 +17154,11 @@
"Hideout/Handover window/Caption/All weapons": "All weapons",
"Hideout/Handover window/Message/Items in stash selected:": "Items in stash selected:",
"Hideout/Mannequin/Pose/boxing": "Fist Fighter",
"Hideout/Mannequin/Pose/democracy": "Honor",
"Hideout/Mannequin/Pose/fingerguns": "Cowboy",
"Hideout/Mannequin/Pose/fingerguns2": "Sharpshooter",
"Hideout/Mannequin/Pose/gopnik": "Slav Squat",
"Hideout/Mannequin/Pose/jojo": "Jomoon",
"Hideout/Mannequin/Pose/muscles_flex": "Feel My Gains",
"Hideout/Mannequin/Pose/spreadinghands": "Well What Is It",
"Hideout/Mannequin/Pose/standing": "Briefing",
@@ -17089,6 +17290,7 @@
"Inventory Errors/Not examined target install": "Nedá sa použiť na nepresk. položku",
"Inventory Errors/Not moddable in raid": "Cannot attach while in raid",
"Inventory Errors/Not moddable without multitool": "Multitool is required to attach",
"Inventory Errors/OverMaxBackbackDeep": "Too many identical items stacked consecutively (max {0})",
"Inventory Errors/Putting unlootable": "This slot is unlootable",
"Inventory Errors/Putting unlootable ": "This slot is unlootable",
"Inventory Errors/Same place": "Nemôžete preniesť položku na rovnaké miesto",
@@ -17805,6 +18007,7 @@
"Player {0} has left the group": "User {0} has left the group.",
"Player {0} invite you to the group": "Player {0} invites you to the group",
"Player {0} was invited to your group": "Player {0} was invited to your group",
"PlayerArenaRefill": "Refill",
"PlayerEquipmentWindow/Caption{0}": "Equipment preview: {0}",
"PlayerProfile/Unavailable": "PMC profile hidden",
"Players spawn": "Players spawn",
@@ -18275,6 +18478,7 @@
"SAN_TRANSIT_1_COND": " ",
"SAN_TRANSIT_1_DESC": "Transit to Streets of Tarkov",
"SAVAGE": "SCAV",
"SAVE (Y)": "SAVE (Y)",
"SAVE AS ...": "SAVE AS...",
"SAVE AS...": "Save as...",
"SCAV LOOT TRANSFER": "SCAV LOOT TRANSFER",
@@ -18955,7 +19159,7 @@
"Transit/AccessNotGranted": "Access denied",
"Transit/InactivePoint": "Transit unavailable",
"Transit/Interaction": "Interact",
"Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone, press \"interact\" to activate the transition",
"Transit/LONG_TAP_TO_INTERACT": "You are in the transition zone. Hold \"interact\" to activate the transition.",
"Transition in ": "Transition in ",
"Transition in {0:F1}": "Transition in {0:F1}",
"Tremor": "Tremor",
@@ -19151,6 +19355,8 @@
"UI/Quest/Reward/ItemCaption": "Item",
"UI/Quest/Reward/ProductionSchemeCaption": "Crafting recipe at {0} at level {1}",
"UI/Quest/Reward/QuestCaption": "Task",
"UI/Quest/Reward/StubCaption": "Prestige icon",
"UI/Quest/Reward/StubDescription": "Now you can show everyone how cool you are.",
"UI/Quest/Reward/WebPromoCode Name": "Escape from Tarkov: Arena free trial",
"UI/Quests/Conditions/PrestigeLevel{0}": "Prestige level: {0}",
"UI/Quests/Conditions/ProfileLevel{0}": "Character level: {0}",
@@ -19686,6 +19892,7 @@
"arena/customGames/create/skillLvl": "Player skills level:",
"arena/customGames/invite/message{0}": "CUSTOM GAME INVITE FROM {0}",
"arena/customGames/notify/GameRemoved": "Room has been disbanded",
"arena/customGames/startscoresvalueteam": "Team score",
"arena/customgames/errors/notification/gamealreadystarted": "Game has already started",
"arena/customgames/popup/refreshdailyquest": "Replace operational task?",
"arena/customgames/popups/attemptscountleft:": "Attempts left:",
@@ -21045,7 +21252,7 @@
"6441004f8ab20b218807f14b Name": "Chop Shop",
"6441004f8ab20b218807f14b Description": "A car chop shop on the outskirts of Tarkov. It used to be a place where stolen cars were dismantled for parts, but now it's used to host firefights.",
"64b7d7f23d81c8a9ee03ac27 Name": "Block",
"64b7d7f23d81c8a9ee03ac27 Description": "A courtyard in one of residential neighborhoods, equipped by the Host for Arena fights.",
"64b7d7f23d81c8a9ee03ac27 Description": "A courtyard in one of the residential neighborhoods, re-equipped for Arena fights.",
"653e6760052c01c1c805532f Name": "Ground Zero",
"653e6760052c01c1c805532f Description": "The business center of Tarkov. This is where TerraGroup was headquartered. This is where it all began.",
"65b8d6f5cdde2479cb2a3125 Name": "Ground Zero",
@@ -21053,7 +21260,7 @@
"662b728d328cb632bd0c6caf Name": "SkyBridge",
"662b728d328cb632bd0c6caf Description": "The railway station, whose trains connected Tarkov with other cities in the Norvinsk region, was opened after reconstruction on the eve of the conflict. It is now used as an arena for battles.",
"6690e7e7dc976e4c780336b1 Name": "Fort",
"6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights",
"6690e7e7dc976e4c780336b1 Description": "A 19th century sea fort, which by fate became a prison at first and then after a century got turned into an arena for gladiatorial fights.",
"66ba059e89f905cb2208bd58 Name": "",
"66ba059e89f905cb2208bd58 Description": "",
"6733700029c367a3d40b02af Name": "The Labyrinth",
@@ -21880,6 +22087,8 @@
"67c870e5da2a209b2a0ed126": "",
"67c87145e52edc36aa069ae6": "",
"67c871b6e0b64a07890a2f36": "",
"682dedb734c3c29e5102bbbe": "",
"68347d3e93833d37d307361d": "",
"5936d90786f7742b1420ba5b name": "Debut",
"5936d90786f7742b1420ba5b description": "Ahoj, vojak. Mám jednu prácu, ktorá je príliš ľahká pre mojich chlapcov. Ale pre teba to bude akurát. Hej, nebuď na mňa naštvaný, ešte ťa nepoznám tak dobre, aby som ti dal normálnu prácu!\n\nPo uliciach sa potuluje kopec banditskej špiny. Mňa nejak extra neobťažujú, ale aj tak sú otravní. Skľudni ich, povedzme, päť a zober im pár brokovníc MP-133. Myslím, že to bude pre teba tak akurát. Rozchod, vojak!",
"5936d90786f7742b1420ba5b failMessageText": "",
@@ -28916,7 +29125,7 @@
"67f3eab9a33cd296b20ee695 name": "Staff Shortage",
"67f3eab9a33cd296b20ee695 description": "Hey there mate! Did'ya hear about my master plan? Alright don't get pissy, I don't employ people for nothing. And if anyone doesn't like the terms, they can file a fucking complaint against me. This isn't Moscow. It's time for everyone to come down to earth and accept our grim fucking reality.\n\nAlright, so here's what this job's about. That bloody forest freak is getting active and bothering my mates. His friend Partisan has ruined the supply routes, and they're also hunting my recruiters.\n\nSo I thought you'd be a good fit for this counteraction. Cover my mates at the checkpoints, and bury this Partisan fuck in the ditch somewhere. I'll make it worth your while. I need these recruits urgently, mate.",
"67f3eab9a33cd296b20ee695 failMessageText": "Wait, so you're the one who's doing Jaeger's fucking mission? What, doing threesome tea parties with Partisan too? Go to your fucking woods all together then, don't bother showing up here again! Don't meddle with my business, you'll fucking regret it, got it?!",
"67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we at least have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.",
"67f3eab9a33cd296b20ee695 successMessageText": "Fucking blimey! That fucker's been an annoyance to everyone for a long while. Now we least we have safe places to bring in volunteers. \n\nI've also done some secret spy shit, so nobody's gonna find my bases now.\n\nGood job, mister operator.",
"67f71386222d15f53e5be7ee": "Locate and neutralize Partisan",
"67f7142fa9a0ae3401ddb94c": "Eliminate PMC operatives",
"67f3eab9a33cd296b20ee695 acceptPlayerMessage": "",
@@ -28930,6 +29139,89 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "Hobby Club",
"684009026ceedc792c09b2a7 description": "Excellent, I've been waiting for you. I have a friend in the States, a very skilled weapons professional. He's obsessed with Russian firearms, and for several years now he's been working on his own project, called the AK-50. I don't think you've ever seen an AK that fires a .50 cal... The NATO one, I mean.\n\nSo the project is finally finished, and he sent me a test sample. Such a heavy and specialized rifle is too risky to be imported in one piece, so we broke the package into several parts. Well guess what, things in Tarkov didn't go according to plan. Shocker, I know.\n\nThe main body comes as one part, and it was seized in Atlantic waters. However I have the blueprint, so I need you to use it to build a new one for me. It certainly won't be easy in our circumstances. But at least you'll still have a copy of the blueprint for later use.\n\nThe handguard comes with the gas tube, and it was somehow intercepted by Skier's thugs. This part took two years to assemble, fit, and test, and the cost of development and prototypes has already gone over a couple million.\n\nThe dust cover was intercepted at one of the checkpoints already in Tarkov. I don't know which one, you'll have to search through all of them. But the barrel is definitely at the military base. Glukhar's personally organized an ambush on my convoy, and apparently knew about this shipment. You'll have to fight for it, or hope for some divine intervention.\n\nWhen you've collected all the parts, drop them off at the transmission tower shack near the gas station at the customs district. I'll ask my crew to deliver them from there, and after that I'll be able to manufacture the parts myself. And, of course, I won't forget your help.",
"684009026ceedc792c09b2a7 failMessageText": "",
"684009026ceedc792c09b2a7 successMessageText": "You got everything? This is definitely something to celebrate... There's no other rifle like it not just in Tarkov, but in the whole world! This is what happens when a man with skills takes his dream seriously.\n\nYou already have the blueprint with the main rifle body, and you can get the missing parts from me in the future. And yes, drop by my place after you've tested this beast. I plan to send word to my friend and tell him what his creation can do in the field.",
"68406f61dee69e488380df08": "Assemble and hand over the main part of AK-50",
"68406fd3b614b3db64e6097d": "Locate and obtain the AK-50 barrel on Reserve",
"68406fe240fcc2eea7fbe150": "Hand over the found part",
"684070a1a550c194cf2f833a": "Locate and obtain the AK-50 dust cover at one of Tarkov's security checkpoints",
"684070bb065afe8c5455ad28": "Hand over the found part",
"684070d42d471ff3ba44ef9f": "Obtain and hand over the AK-50 handguard seized by Skier",
"6840711071516aad97bd9156": "Locate Glukhar's workshop on Reserve",
"6840714469caa738cc1225c3": "Locate the checkpoint with seized cargo",
"685e95c44b14e68996ad6590": "Stash the AK-50 body at the specified spot on Customs",
"685e95d28ba62d57a3235675": "Stash the AK-50 handguard at the specified spot on Customs",
"685e95def338135da83ff978": "Stash the AK-50 barrel at the specified spot on Customs",
"685e95f0ac5f975749f6c1f3": "Stash the AK-50 dust cover at the specified spot on Customs",
"685e97f9892281cf7a89f39c": "Build the AK-50 body",
"684009026ceedc792c09b2a7 acceptPlayerMessage": "",
"684009026ceedc792c09b2a7 declinePlayerMessage": "",
"684009026ceedc792c09b2a7 completePlayerMessage": "",
"68400926706e0a55e90b0007 name": "Fair Price - Part 1",
"68400926706e0a55e90b0007 description": "Hello mate. People say you're looking for something, and that you and Mechanic desperately need this fuckin' piece of junk. What, thought I wouldn't find out? I've ran through your little project, so you two aren't gonna bullshit me with the price.\n\nIf you really want it, you'll have to pay the proper price. Twenty... No, fifty grand! And no bargaining. Your little handguard is already locked up in a safe place, you won't find it on your own. So, ready to pay for your project or not?",
"68400926706e0a55e90b0007 failMessageText": "",
"68400926706e0a55e90b0007 successMessageText": "Fucking splendid! Mechanic's a fucking gun nut, I get it, but I sure didn't expect YOU to pay that kind of money for some bloody handguard. Whatever, I don't care. If you two want it, you can go play in your little workshop. This oversized rubbish won't even fit any AK!\n\nI'll tell my boys, they'll drop your part off at the transfer point.",
"684180b0b22d582a57c5a8d7": "Hand over EUR",
"68400926706e0a55e90b0007 acceptPlayerMessage": "",
"68400926706e0a55e90b0007 declinePlayerMessage": "",
"68400926706e0a55e90b0007 completePlayerMessage": "",
"68400953506db3b4db0700e7 name": "Fair Price - Part 2",
"68400953506db3b4db0700e7 description": "Don't regret your investment yet? Let me give you an advice, nerds like Mechanic are the ones who pull off the most rotten schemes! He'll get his profit, and you won't even realise you've been screwed. All right, quit bitching! I'm telling you the honest bloody truth.\n\nIf you're still confident about this \"project\", you can collect the handguard at the abandoned sawmill near the village in the nature reserve, there's a UN post not far from there. The lads have already dropped it off. But I wouldn't stay there too long, who knows what other scum's there. If someone steals it before you, don't come to me with any claims!",
"68400953506db3b4db0700e7 failMessageText": "",
"68400953506db3b4db0700e7 successMessageText": "What, you got it already? Well done mate, you're a good little mule. When you get tired of playing gunsmith with Mechanic, you know who to go to. Oh, and, uh, if you can get the part back, that'd be sweet. Maybe we'll make some business with it, because I think I found really valuable info on this overseas AK...",
"6841814c20c9a6c68800ab79": "Locate and obtain the AK-50 handguard at the old sawmill on Woods",
"6841815b3d5e6b08d1f6e474": "Locate the stash spot",
"684181808b21759f04e1c4ee": "Complete the task Hobby Club",
"68400953506db3b4db0700e7 acceptPlayerMessage": "",
"68400953506db3b4db0700e7 declinePlayerMessage": "",
"68400953506db3b4db0700e7 completePlayerMessage": "",
"6848100b00afffa81f09e365 name": "New Beginning",
"6848100b00afffa81f09e365 description": "Hello my brother! So how's it hanging? Not bored yet? Alright alright, just messing with you. I already figured you know how this one goes.\n\nYou really can't fall off the influential guys' list, dude. At the very least, it's gonna plummet my rep. It's not gonna look good for me if my candidate falls off the list on the third task, so don't get too comfortable.\n\nSo, like I said last time, something big's cooking. And you and I need to keep our fingers on the pulse.\n\nHere's a list of what we need to bring this time. Yeah, it's longer this time. Anyway, you're a smart guy, you'll figure it out.",
"6848100b00afffa81f09e365 failMessageText": "",
"6848100b00afffa81f09e365 successMessageText": "Excellent. Never letting me down, brother. My credibility is still there, and yours is on the rise. Perfect outcome, isn't it?",
"6848100b00afffa81f09e369": "Eliminate PMC operatives",
"6848100b00afffa81f09e36b": "Use the transit from The Lab to Streets of Tarkov",
"6848100b00afffa81f09e36d": "Hand over the found in raid item: BEAR operative figurine",
"6848100b00afffa81f09e36e": "Hand over the found in raid item: Politician Mutkevich figurine",
"6848100b00afffa81f09e36f": "Hand over the found in raid item: Killa figurine",
"6848100b00afffa81f09e370": "Hand over the found in raid item: Reshala figurine",
"6848100b00afffa81f09e371": "Hand over the found in raid item: Ryzhy figurine",
"6848100b00afffa81f09e372": "Hand over the found in raid item: Scav figurine",
"6848100b00afffa81f09e373": "Hand over the found in raid item: Tagilla figurine",
"6848100b00afffa81f09e374": "Hand over the found in raid item: USEC operative figurine",
"6848100b00afffa81f09e375": "Hand over the found in raid item: Cultist figurine",
"6848100b00afffa81f09e376": "Hand over the found in raid item: Den figurine",
"6848116061809d65b8503617": "Survive and extract from Streets of Tarkov",
"684811fa366152006bebe08b": "Hand over any of the limited Labyrinth figurines",
"684812156189183883f13947": "Eliminate Raiders",
"6848100b00afffa81f09e365 acceptPlayerMessage": "",
"6848100b00afffa81f09e365 declinePlayerMessage": "",
"6848100b00afffa81f09e365 completePlayerMessage": "",
"68481881f43abfdda2058369 name": "New Beginning",
"68481881f43abfdda2058369 description": "Always good to see you on my doorstep! Not bored, are you? What, am I repeating myself again? Hey come on, it's just a little joke!\n\nAlright, down to business. The lists are constantly being updated, and you know our reputations are on the line. You know that you're not going anywhere in Tarkov without it. So we have to get this job done. I've just been handed the new list...\n\nWhat, you've already done some of these? Cool, easier for you. You gotta look on the bright side, brother! Otherwise, you're not gonna live long. Go ahead, show all those list makers how tough you are!",
"68481881f43abfdda2058369 failMessageText": "",
"68481881f43abfdda2058369 successMessageText": "Nice job, brother! Could have been quicker, but there was nothing in the task about time, so let's just ignore it.",
"68481881f43abfdda205836d": "Eliminate PMC operatives",
"68481881f43abfdda205836f": "Use the transit from The Lab to Streets of Tarkov",
"68481881f43abfdda2058371": "Hand over the found in raid item: BEAR operative figurine",
"68481881f43abfdda2058372": "Hand over the found in raid item: Politician Mutkevich figurine",
"68481881f43abfdda2058373": "Hand over the found in raid item: Killa figurine",
"68481881f43abfdda2058374": "Hand over the found in raid item: Reshala figurine",
"68481881f43abfdda2058375": "Hand over the found in raid item: Ryzhy figurine",
"68481881f43abfdda2058376": "Hand over the found in raid item: Scav figurine",
"68481881f43abfdda2058377": "Hand over the found in raid item: Tagilla figurine",
"68481881f43abfdda2058378": "Hand over the found in raid item: USEC operative figurine",
"68481881f43abfdda2058379": "Hand over the found in raid item: Cultist figurine",
"68481881f43abfdda205837a": "Hand over the found in raid item: Den figurine",
"68481a8eda10b760b3b1a73f": "Eliminate Rogues",
"68483a05801f8d9e40ac05b1": "Use the transit from Streets of Tarkov to Interchange",
"68483a48dcb8688e2454ab7b": "Survive and extract from Interchange",
"68486a0eda4828c0772e337b": "Hand over any of the found in raid limited Labyrinth figurines",
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.",
@@ -30049,6 +30341,12 @@
"67fce0c2f18dc20eae02240b name": "Star Called Sun",
"67fce0c2f18dc20eae02240b description": "Obliterate a cultist while using the RShG-2 rocket launcher",
"67fce0c2f18dc20eae02240b successMessage": "",
"6842c25bd02bc07d70054019 name": "Keeping Up the Pace",
"6842c25bd02bc07d70054019 description": "Earn the Prestige level 3",
"6842c25bd02bc07d70054019 successMessage": "",
"6842c27a38482d35ac0bd847 name": "Higher and Higher",
"6842c27a38482d35ac0bd847 description": "Earn the Prestige level 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -30311,9 +30609,28 @@
"67adb4843fec17bf3ea9452e name": "Minotaur's Lair",
"67adb4843fec17bf3ea9452e description": "This ceiling is nothing sophisticated. The Minotaur doesn't need anything like that.",
"67adb48fd05a78f5a5fc5260": "Can only be obtained during special events",
"6841c93d40f98448eafbe5fe name": "Darts target",
"6841c93d40f98448eafbe5fe description": "A target for those who miss all the bar games.",
"6841cb6ad7c6601d14c49c8d": "Reach Prestige level 4",
"6841ca25a3202eb499cdee19 name": "Rat target",
"6841ca25a3202eb499cdee19 description": "A target for sneaky rodent hunters.",
"6841cb482aa4735bc953dccb": "Reach Prestige level 5",
"6841caa796e886f328e69606 name": "Crow target",
"6841caa796e886f328e69606 description": "Crows are clever birds. But in image form, they certainly won't outsmart you. Unless?",
"6841cbabc58389310416c098": "Reach Prestige level 3",
"6841cc541c407f8aa0e4f62b name": "White walls",
"6841cc541c407f8aa0e4f62b description": "White walls will make the Hideout look more spacious. Like an office.",
"6841cc7af143c60fc8dfbd26": "Reach Prestige level 5",
"6841ccf5cf47eb290b9fb24e name": "Gray wood",
"6841ccf5cf47eb290b9fb24e description": "A nice light-colored floor. Helps keep the eyes free of strain. It also keeps the dust almost invisible.",
"6841cd092c726cdf75b45770": "Reach Prestige level 4",
"6841cdb93de393b52dd49865 name": "Gilded ceiling",
"6841cdb93de393b52dd49865 description": "A white ceiling with gold inlays. Someone went to a lot of trouble to paint these stripes.",
"6841cdc772532c1991fe1615": "Reach Prestige level 6",
"672df12f97f0469cea52f55e name": "Prestige 1",
"675d7242b85061aa2017c341": "Complete the task You've Got Mail",
"672df4281ab8d9c8849a0c88 name": "Prestige 2",
"675d71d1bbb25a353d697179": "Reach Vitality skill level 20",
"6760a03623016948ee282ea8 name": ""
}
"683da91d6f472cfa738c52f2 name": "",
"6842f121000d98ce33b9a60f name": ""
}
File diff suppressed because it is too large Load Diff
@@ -1,19 +1,19 @@
{
"ch": "Chinese",
"cz": "Czech",
"en": "English",
"fr": "French",
"ge": "German",
"hu": "Hungarian",
"it": "Italian",
"jp": "Japanese",
"kr": "Korean",
"pl": "Polish",
"po": "Portugal",
"sk": "Slovak",
"es": "Spanish",
"es-mx": "Spanish Mexico",
"tu": "Turkish",
"ru": "Русский",
"ro": "Romanian"
}
"ch": "Chinese",
"cz": "Czech",
"en": "English",
"fr": "French",
"ge": "German",
"hu": "Hungarian",
"it": "Italian",
"jp": "Japanese",
"kr": "Korean",
"pl": "Polish",
"po": "Portugal",
"sk": "Slovak",
"es": "Spanish",
"es-mx": "Spanish Mexico",
"tu": "Turkish",
"ru": "Русский",
"ro": "Romanian"
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "邮箱或密码错误",
"213 - Error connecting to auth server": "授权当前不可用,请稍后再试。",
"240 - Servers temporarily unavailable. Please, try later.": "服务器维护中",
"ASSEMBLE": "组装",
"AUTHORIZATION": "授权",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "服务版本错误",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "反作弊连接失败",
"BATTLEYE_ANTICHEAT_CorruptedData": "游戏的完整性验证失败。请重新安装反作弊系统",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "文件损坏。完整性验证失败。请重新安装反作弊系统",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "非法程序正在运行",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "反作弊载入失败。",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "游戏需要重新启动",
"BATTLEYE_ANTICHEAT_GlobalBan": "该玩家已被BattleEye封禁",
"BATTLEYE_ANTICHEAT_QueryTimeout": "反作弊连接失败。请重新启动游戏",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "关键Windows API调用失败",
"BATTLEYE_ServiceNeedsToBeUpdated": "反作弊版本过时。游戏需要重新启动",
"BATTLEYE_ServiceNotRunningProperly": "反作弊运行不正确。游戏需要重新启动",
"BATTLEYE_UnknownRestartReason": "反作弊运行错误。 游戏需要重新启动",
"EXIT": "退出游戏",
"NEXT": "下一步",
"Place in queue:": "在队列中的位置:",
"Profile data loading...": "配置数据加载中...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "反作弊连接失败",
"Servers are currently at full capacity": "服务器当前已满载"
}
}
"menu": {
"206 - Wrong email or password": "邮箱或密码错误",
"213 - Error connecting to auth server": "授权当前不可用,请稍后再试。",
"240 - Servers temporarily unavailable. Please, try later.": "服务器维护中",
"ASSEMBLE": "组装",
"AUTHORIZATION": "授权",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "服务版本错误",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "反作弊连接失败",
"BATTLEYE_ANTICHEAT_CorruptedData": "游戏的完整性验证失败。请重新安装反作弊系统",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "文件损坏。完整性验证失败。请重新安装反作弊系统",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "非法程序正在运行",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "反作弊载入失败。",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "游戏需要重新启动",
"BATTLEYE_ANTICHEAT_GlobalBan": "该玩家已被BattleEye封禁",
"BATTLEYE_ANTICHEAT_QueryTimeout": "反作弊连接失败。请重新启动游戏",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "关键Windows API调用失败",
"BATTLEYE_ServiceNeedsToBeUpdated": "反作弊版本过时。游戏需要重新启动",
"BATTLEYE_ServiceNotRunningProperly": "反作弊运行不正确。游戏需要重新启动",
"BATTLEYE_UnknownRestartReason": "反作弊运行错误。 游戏需要重新启动",
"EXIT": "退出游戏",
"NEXT": "下一步",
"Place in queue:": "在队列中的位置:",
"Profile data loading...": "配置数据加载中...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "反作弊连接失败",
"Servers are currently at full capacity": "服务器当前已满载"
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Špatný email nebo heslo",
"213 - Error connecting to auth server": "Autorizace není nyní k dispozici, zkuste to prosím později.",
"240 - Servers temporarily unavailable. Please, try later.": "Údržba serverů",
"ASSEMBLE": "SESTAVIT",
"AUTHORIZATION": "AUTORIZACE",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Špatná verze služby",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Připojení k anticheatu selhalo",
"BATTLEYE_ANTICHEAT_CorruptedData": "Nepodařilo se ověřit integritu hry. Přeinstalujte anticheat",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Poškozená paměť. Nepodařilo se ověřit integritu ochrany. Přeinstalujte anticheat",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Je spuštěn zakázaný program",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Načtení anticheatu se nezdařilo.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Je vyžadován restart hry",
"BATTLEYE_ANTICHEAT_GlobalBan": "Hráč byl zabanován pomocí BE",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Připojení k anticheatu selhalo. Prosím restartujte hru",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Volání funkce Windows API kriticky selhalo",
"BATTLEYE_ServiceNeedsToBeUpdated": "Anticheat je zastaralý. Je vyžadován restart hry",
"BATTLEYE_ServiceNotRunningProperly": "Anticheat neběží správně. Je vyžadován restart hry",
"BATTLEYE_UnknownRestartReason": "Anticheat neběží správně. Je vyžadován restart hry",
"EXIT": "UKONČIT",
"NEXT": "DALŠÍ",
"Place in queue:": "Místo ve frontě:",
"Profile data loading...": "Načítání osobního profilu...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Připojení k anticheatu selhalo",
"Servers are currently at full capacity": "Servery jsou momentálně plné"
}
}
"menu": {
"206 - Wrong email or password": "Špatný email nebo heslo",
"213 - Error connecting to auth server": "Autorizace není nyní k dispozici, zkuste to prosím později.",
"240 - Servers temporarily unavailable. Please, try later.": "Údržba serverů",
"ASSEMBLE": "SESTAVIT",
"AUTHORIZATION": "AUTORIZACE",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Špatná verze služby",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Připojení k anticheatu selhalo",
"BATTLEYE_ANTICHEAT_CorruptedData": "Nepodařilo se ověřit integritu hry. Přeinstalujte anticheat",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Poškozená paměť. Nepodařilo se ověřit integritu ochrany. Přeinstalujte anticheat",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Je spuštěn zakázaný program",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Načtení anticheatu se nezdařilo.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Je vyžadován restart hry",
"BATTLEYE_ANTICHEAT_GlobalBan": "Hráč byl zabanován pomocí BE",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Připojení k anticheatu selhalo. Prosím restartujte hru",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Volání funkce Windows API kriticky selhalo",
"BATTLEYE_ServiceNeedsToBeUpdated": "Anticheat je zastaralý. Je vyžadován restart hry",
"BATTLEYE_ServiceNotRunningProperly": "Anticheat neběží správně. Je vyžadován restart hry",
"BATTLEYE_UnknownRestartReason": "Anticheat neběží správně. Je vyžadován restart hry",
"EXIT": "UKONČIT",
"NEXT": "DALŠÍ",
"Place in queue:": "Místo ve frontě:",
"Profile data loading...": "Načítání osobního profilu...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Připojení k anticheatu selhalo",
"Servers are currently at full capacity": "Servery jsou momentálně plné"
}
}
@@ -25,4 +25,4 @@
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Anticheat connection failed",
"Servers are currently at full capacity": "Servers are currently at full capacity"
}
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Correo electrónico o contraseña incorrectos",
"213 - Error connecting to auth server": "La autorización no está disponible en estos momentos, por favor, inténtalo de nuevo más tarde.",
"240 - Servers temporarily unavailable. Please, try later.": "Los servidores están en mantenimiento.",
"ASSEMBLE": "ENSAMBLAR",
"AUTHORIZATION": "AUTORIZACIÓN",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Versión de servicio incorrecta.",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Falló la conexión del Anticheat.",
"BATTLEYE_ANTICHEAT_CorruptedData": "La integridad del juego falló la validación. Reinstala el Anticheat.",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Memoria corrupta. No se pudo validar la integridad de la protección. Reinstala el Anticheat.",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Programa no permitido en ejecución.",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "El Anticheat falló al cargar.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Requiere reiniciar el juego.",
"BATTLEYE_ANTICHEAT_GlobalBan": "El jugador ha sido baneado por BattlEye.",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Falló la conexión del Anticheat. Por favor, reinicia el juego.",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Falló la petición a una API crítica de Windows.",
"BATTLEYE_ServiceNeedsToBeUpdated": "El Anticheat está desactualizado. Requiere reiniciar el juego.",
"BATTLEYE_ServiceNotRunningProperly": "El Anticheat está funcionando de forma incorrecta. Requiere reiniciar el juego.",
"BATTLEYE_UnknownRestartReason": "El Anticheat está funcionando de forma incorrecta. Requiere reiniciar el juego.",
"EXIT": "SALIR",
"NEXT": "SIGUIENTE",
"Place in queue:": "Posición en la cola:",
"Profile data loading...": "Cargando datos del perfil...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Falló la conexión del Anticheat.",
"Servers are currently at full capacity": "Los servidores están llenos ahora mismo."
}
}
"menu": {
"206 - Wrong email or password": "Correo electrónico o contraseña incorrectos",
"213 - Error connecting to auth server": "La autorización no está disponible en estos momentos, por favor, inténtalo de nuevo más tarde.",
"240 - Servers temporarily unavailable. Please, try later.": "Los servidores están en mantenimiento.",
"ASSEMBLE": "ENSAMBLAR",
"AUTHORIZATION": "AUTORIZACIÓN",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Versión de servicio incorrecta.",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Falló la conexión del Anticheat.",
"BATTLEYE_ANTICHEAT_CorruptedData": "La integridad del juego falló la validación. Reinstala el Anticheat.",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Memoria corrupta. No se pudo validar la integridad de la protección. Reinstala el Anticheat.",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Programa no permitido en ejecución.",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "El Anticheat falló al cargar.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Requiere reiniciar el juego.",
"BATTLEYE_ANTICHEAT_GlobalBan": "El jugador ha sido baneado por BattlEye.",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Falló la conexión del Anticheat. Por favor, reinicia el juego.",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Falló la petición a una API crítica de Windows.",
"BATTLEYE_ServiceNeedsToBeUpdated": "El Anticheat está desactualizado. Requiere reiniciar el juego.",
"BATTLEYE_ServiceNotRunningProperly": "El Anticheat está funcionando de forma incorrecta. Requiere reiniciar el juego.",
"BATTLEYE_UnknownRestartReason": "El Anticheat está funcionando de forma incorrecta. Requiere reiniciar el juego.",
"EXIT": "SALIR",
"NEXT": "SIGUIENTE",
"Place in queue:": "Posición en la cola:",
"Profile data loading...": "Cargando datos del perfil...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Falló la conexión del Anticheat.",
"Servers are currently at full capacity": "Los servidores están llenos ahora mismo."
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Correo electrónico o contraseña incorrectos",
"213 - Error connecting to auth server": "La autorización no está disponible en estos momentos, por favor, inténtalo de nuevo más tarde.",
"240 - Servers temporarily unavailable. Please, try later.": "Los servidores están en mantenimiento.",
"ASSEMBLE": "MONTAR",
"AUTHORIZATION": "AUTORIZACIÓN",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Versión incorrecta del servicio.",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Ha fallado la conexión con el antitrampas.",
"BATTLEYE_ANTICHEAT_CorruptedData": "La integridad del juego ha fallado la validación. Reinstala el antitrampas.",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Memoria corrupta. No se pudo validar la integridad de la protección. Reinstala el antitrampas.",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Programa no permitido en ejecución.",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "El antitrampas falló al cargar.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Requiere reiniciar el juego.",
"BATTLEYE_ANTICHEAT_GlobalBan": "El jugador ha sido baneado por BattlEye.",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Ha fallado la conexión con el antitrampas. Por favor, reinicia el juego.",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Ha fallado la petición a una API crítica de Windows.",
"BATTLEYE_ServiceNeedsToBeUpdated": "El antitrampas está desactualizado. Requiere reiniciar el juego.",
"BATTLEYE_ServiceNotRunningProperly": "El antitrampas está funcionando de forma incorrecta. Requiere reiniciar el juego.",
"BATTLEYE_UnknownRestartReason": "El antitrampas está funcionando de forma incorrecta. Requiere reiniciar el juego.",
"EXIT": "SALIR",
"NEXT": "SIGUIENTE",
"Place in queue:": "Puesto en la cola:",
"Profile data loading...": "Cargando datos del perfil...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Ha fallado la conexión con el antitrampas.",
"Servers are currently at full capacity": "Los servidores están llenos ahora mismo."
}
}
"menu": {
"206 - Wrong email or password": "Correo electrónico o contraseña incorrectos",
"213 - Error connecting to auth server": "La autorización no está disponible en estos momentos, por favor, inténtalo de nuevo más tarde.",
"240 - Servers temporarily unavailable. Please, try later.": "Los servidores están en mantenimiento.",
"ASSEMBLE": "MONTAR",
"AUTHORIZATION": "AUTORIZACIÓN",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Versión incorrecta del servicio.",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Ha fallado la conexión con el antitrampas.",
"BATTLEYE_ANTICHEAT_CorruptedData": "La integridad del juego ha fallado la validación. Reinstala el antitrampas.",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Memoria corrupta. No se pudo validar la integridad de la protección. Reinstala el antitrampas.",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Programa no permitido en ejecución.",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "El antitrampas falló al cargar.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Requiere reiniciar el juego.",
"BATTLEYE_ANTICHEAT_GlobalBan": "El jugador ha sido baneado por BattlEye.",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Ha fallado la conexión con el antitrampas. Por favor, reinicia el juego.",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Ha fallado la petición a una API crítica de Windows.",
"BATTLEYE_ServiceNeedsToBeUpdated": "El antitrampas está desactualizado. Requiere reiniciar el juego.",
"BATTLEYE_ServiceNotRunningProperly": "El antitrampas está funcionando de forma incorrecta. Requiere reiniciar el juego.",
"BATTLEYE_UnknownRestartReason": "El antitrampas está funcionando de forma incorrecta. Requiere reiniciar el juego.",
"EXIT": "SALIR",
"NEXT": "SIGUIENTE",
"Place in queue:": "Puesto en la cola:",
"Profile data loading...": "Cargando datos del perfil...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Ha fallado la conexión con el antitrampas.",
"Servers are currently at full capacity": "Los servidores están llenos ahora mismo."
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Mot de passe ou email erronés",
"213 - Error connecting to auth server": "Autorisation non disponible actuellement, veuillez réessayer plus tard.",
"240 - Servers temporarily unavailable. Please, try later.": "Maintenance des serveurs",
"ASSEMBLE": "ASSEMBLER",
"AUTHORIZATION": "AUTORISATION",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Mauvaise version du service",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Connexion à l'anti-triche échouée",
"BATTLEYE_ANTICHEAT_CorruptedData": "L'intégrité du jeu n'a pas pu être validée. Réinstallez l'anti-triche",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Mémoire corrompue. L'intégrité de la protection n'a pas pu être validée. Réinstaller l'anti-triche",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Programme non autorisé en cours d'exécution",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Le chargement de l'anti-triche a échoué.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Redémarrage du jeu requis",
"BATTLEYE_ANTICHEAT_GlobalBan": "Le joueur a été banni par BattleEye",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Connexion à l'anti-triche échouée. Veuillez redémarrer le jeu",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Un appel critique de l'API Windows a échoué",
"BATTLEYE_ServiceNeedsToBeUpdated": "L'anti-triche est obsolète. Redémarrage du jeu requis",
"BATTLEYE_ServiceNotRunningProperly": "L'anti-triche ne fonctionne pas correctement. Redémarrage du jeu requis",
"BATTLEYE_UnknownRestartReason": "L'anti-triche ne fonctionne pas correctement. Redémarrage du jeu requis",
"EXIT": "SORTIE",
"NEXT": "SUIVANT",
"Place in queue:": "Position dans la file : ",
"Profile data loading...": "Chargement des données du profil...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Connexion à l'anti-triche échouée",
"Servers are currently at full capacity": "Les serveurs sont actuellement complets"
}
}
"menu": {
"206 - Wrong email or password": "Mot de passe ou email erronés",
"213 - Error connecting to auth server": "Autorisation non disponible actuellement, veuillez réessayer plus tard.",
"240 - Servers temporarily unavailable. Please, try later.": "Maintenance des serveurs",
"ASSEMBLE": "ASSEMBLER",
"AUTHORIZATION": "AUTORISATION",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Mauvaise version du service",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Connexion à l'anti-triche échouée",
"BATTLEYE_ANTICHEAT_CorruptedData": "L'intégrité du jeu n'a pas pu être validée. Réinstallez l'anti-triche",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Mémoire corrompue. L'intégrité de la protection n'a pas pu être validée. Réinstaller l'anti-triche",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Programme non autorisé en cours d'exécution",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Le chargement de l'anti-triche a échoué.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Redémarrage du jeu requis",
"BATTLEYE_ANTICHEAT_GlobalBan": "Le joueur a été banni par BattleEye",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Connexion à l'anti-triche échouée. Veuillez redémarrer le jeu",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Un appel critique de l'API Windows a échoué",
"BATTLEYE_ServiceNeedsToBeUpdated": "L'anti-triche est obsolète. Redémarrage du jeu requis",
"BATTLEYE_ServiceNotRunningProperly": "L'anti-triche ne fonctionne pas correctement. Redémarrage du jeu requis",
"BATTLEYE_UnknownRestartReason": "L'anti-triche ne fonctionne pas correctement. Redémarrage du jeu requis",
"EXIT": "SORTIE",
"NEXT": "SUIVANT",
"Place in queue:": "Position dans la file : ",
"Profile data loading...": "Chargement des données du profil...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Connexion à l'anti-triche échouée",
"Servers are currently at full capacity": "Les serveurs sont actuellement complets"
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Falsche E-Mail oder Passwort",
"213 - Error connecting to auth server": "Die Autorisierung ist zurzeit nicht verfügbar, bitte versuche es später nochmal.",
"240 - Servers temporarily unavailable. Please, try later.": "Serverwartung",
"ASSEMBLE": "MONTIEREN",
"AUTHORIZATION": "AUTORISIERUNG",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Falsche Service-Version",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Anticheat-Verbindung fehlgeschlagen",
"BATTLEYE_ANTICHEAT_CorruptedData": "Die Integrität des Spiels konnte nicht validiert werden. Neuinstallation des Anticheat erforderlich",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Fehlerhafter Speicher. Die Integrität des Schutzes konnte nicht validiert werden. Neustart des Anticheats erforderlich",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Unzulässiges Programm wird verwendet",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Laden des Anticheat fehlgeschlagen.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Neustart des Spiels erforderlich",
"BATTLEYE_ANTICHEAT_GlobalBan": "Der Spieler wurde durch BattleEye gebannt",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Anticheat-Verbindung fehlgeschlagen. Bitte starte das Spiel neu",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Ein kritischer Windows-API-Call ist fehlgeschlagen",
"BATTLEYE_ServiceNeedsToBeUpdated": "Anticheat-Programm ist nicht mehr aktuell. Neustart des Spiels erforderlich",
"BATTLEYE_ServiceNotRunningProperly": "Das Anticheat-Programm läuft nicht richtig. Neustart des Spiels erforderlich",
"BATTLEYE_UnknownRestartReason": "Das Anticheat-Programm läuft nicht richtig. Neustart des Spiels erforderlich",
"EXIT": "BEENDEN",
"NEXT": "WEITER",
"Place in queue:": "Platz in der Warteschlange:",
"Profile data loading...": "Profildaten werden geladen...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Anticheat-Verbindung fehlgeschlagen",
"Servers are currently at full capacity": "Server sind derzeit voll ausgelastet"
}
}
"menu": {
"206 - Wrong email or password": "Falsche E-Mail oder Passwort",
"213 - Error connecting to auth server": "Die Autorisierung ist zurzeit nicht verfügbar, bitte versuche es später nochmal.",
"240 - Servers temporarily unavailable. Please, try later.": "Serverwartung",
"ASSEMBLE": "MONTIEREN",
"AUTHORIZATION": "AUTORISIERUNG",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Falsche Service-Version",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Anticheat-Verbindung fehlgeschlagen",
"BATTLEYE_ANTICHEAT_CorruptedData": "Die Integrität des Spiels konnte nicht validiert werden. Neuinstallation des Anticheat erforderlich",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Fehlerhafter Speicher. Die Integrität des Schutzes konnte nicht validiert werden. Neustart des Anticheats erforderlich",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Unzulässiges Programm wird verwendet",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Laden des Anticheat fehlgeschlagen.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Neustart des Spiels erforderlich",
"BATTLEYE_ANTICHEAT_GlobalBan": "Der Spieler wurde durch BattleEye gebannt",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Anticheat-Verbindung fehlgeschlagen. Bitte starte das Spiel neu",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Ein kritischer Windows-API-Call ist fehlgeschlagen",
"BATTLEYE_ServiceNeedsToBeUpdated": "Anticheat-Programm ist nicht mehr aktuell. Neustart des Spiels erforderlich",
"BATTLEYE_ServiceNotRunningProperly": "Das Anticheat-Programm läuft nicht richtig. Neustart des Spiels erforderlich",
"BATTLEYE_UnknownRestartReason": "Das Anticheat-Programm läuft nicht richtig. Neustart des Spiels erforderlich",
"EXIT": "BEENDEN",
"NEXT": "WEITER",
"Place in queue:": "Platz in der Warteschlange:",
"Profile data loading...": "Profildaten werden geladen...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Anticheat-Verbindung fehlgeschlagen",
"Servers are currently at full capacity": "Server sind derzeit voll ausgelastet"
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Rossz email vagy jelszó",
"213 - Error connecting to auth server": "Az azonosítás jelenleg nem elérhető, kérlek próbáld meg később.",
"240 - Servers temporarily unavailable. Please, try later.": "Szerver karbantartás",
"ASSEMBLE": "ÖSSZESZEREL",
"AUTHORIZATION": "FELHATALMAZÁS",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Rossz szolgáltatás verzió",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Nem sikerült csatlakozni az anticheathez",
"BATTLEYE_ANTICHEAT_CorruptedData": "A játék integritását nem sikerült ellenőrizni. Telepítsd újra az anticheatet",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Sérült memória. A védelem épségét nem sikerült megállapítani. Telepítse újra az anticheatet",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Nem engedélyezett program fut",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Az anticheat betöltése sikertelen.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Indítsd újra a játékot",
"BATTLEYE_ANTICHEAT_GlobalBan": "A játékos bannolva lett a BattlEye által",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Nem sikerült csatlakozni az anticheathez. Indítsd újra a játékot",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Egy kritikus Windows API meghívása sikertelen",
"BATTLEYE_ServiceNeedsToBeUpdated": "Az anticheat verziód elavult. Indítsd újra a játékot",
"BATTLEYE_ServiceNotRunningProperly": "Az anticheat működése nem megfelelő. A játék újraindítása szükséges",
"BATTLEYE_UnknownRestartReason": "Az anticheat működése nem megfelelő. A játék újraindítása szükséges",
"EXIT": "KILÉPÉS",
"NEXT": "KÖVETKEZŐ",
"Place in queue:": "Hely a sorban:",
"Profile data loading...": "Profil adatok betöltése...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Nem sikerült csatlakozni az anticheathez",
"Servers are currently at full capacity": "A szerverek jelenleg teljesen telítettek"
}
}
"menu": {
"206 - Wrong email or password": "Rossz email vagy jelszó",
"213 - Error connecting to auth server": "Az azonosítás jelenleg nem elérhető, kérlek próbáld meg később.",
"240 - Servers temporarily unavailable. Please, try later.": "Szerver karbantartás",
"ASSEMBLE": "ÖSSZESZEREL",
"AUTHORIZATION": "FELHATALMAZÁS",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Rossz szolgáltatás verzió",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Nem sikerült csatlakozni az anticheathez",
"BATTLEYE_ANTICHEAT_CorruptedData": "A játék integritását nem sikerült ellenőrizni. Telepítsd újra az anticheatet",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Sérült memória. A védelem épségét nem sikerült megállapítani. Telepítse újra az anticheatet",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Nem engedélyezett program fut",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Az anticheat betöltése sikertelen.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Indítsd újra a játékot",
"BATTLEYE_ANTICHEAT_GlobalBan": "A játékos bannolva lett a BattlEye által",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Nem sikerült csatlakozni az anticheathez. Indítsd újra a játékot",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Egy kritikus Windows API meghívása sikertelen",
"BATTLEYE_ServiceNeedsToBeUpdated": "Az anticheat verziód elavult. Indítsd újra a játékot",
"BATTLEYE_ServiceNotRunningProperly": "Az anticheat működése nem megfelelő. A játék újraindítása szükséges",
"BATTLEYE_UnknownRestartReason": "Az anticheat működése nem megfelelő. A játék újraindítása szükséges",
"EXIT": "KILÉPÉS",
"NEXT": "KÖVETKEZŐ",
"Place in queue:": "Hely a sorban:",
"Profile data loading...": "Profil adatok betöltése...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Nem sikerült csatlakozni az anticheathez",
"Servers are currently at full capacity": "A szerverek jelenleg teljesen telítettek"
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Email o password errata",
"213 - Error connecting to auth server": "L'autorizzazione non è disponibile, riprovare più tardi.",
"240 - Servers temporarily unavailable. Please, try later.": "Manutenzione server di gioco",
"ASSEMBLE": "ASSEMBLA",
"AUTHORIZATION": "AUTORIZZAZIONE",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Versione del servizio non valida",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Connessione con l'anticheat fallita",
"BATTLEYE_ANTICHEAT_CorruptedData": "Impossibile convalidare l'integrità del gioco. Reinstalla l'anticheat",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Memoria corrotta. Impossibile convalidare l'integrità della protezione. Reinstalla l'anticheat",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Programma non consentito in esecuzione",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Caricamento dell'anticheat fallito.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "È necessario riavviare il gioco",
"BATTLEYE_ANTICHEAT_GlobalBan": "Il giocatore è stato bannato da BE",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Connessione con l'anticheat fallita. Si prega di riavviare il gioco",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Una chiamata critica all'API di Windows è fallita",
"BATTLEYE_ServiceNeedsToBeUpdated": "La versione dell'anticheat è obsoleta. È necessario riavviare il gioco",
"BATTLEYE_ServiceNotRunningProperly": "L'anticheat non funziona correttamente. È necessario riavviare il gioco",
"BATTLEYE_UnknownRestartReason": "L'anticheat non funziona correttamente. È necessario riavviare il gioco",
"EXIT": "ESCI",
"NEXT": "AVANTI",
"Place in queue:": "Posizione in coda:",
"Profile data loading...": "Caricando i dati del profilo...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Connessione con l'anticheat fallita",
"Servers are currently at full capacity": "I server sono momentaneamente saturi"
}
}
"menu": {
"206 - Wrong email or password": "Email o password errata",
"213 - Error connecting to auth server": "L'autorizzazione non è disponibile, riprovare più tardi.",
"240 - Servers temporarily unavailable. Please, try later.": "Manutenzione server di gioco",
"ASSEMBLE": "ASSEMBLA",
"AUTHORIZATION": "AUTORIZZAZIONE",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Versione del servizio non valida",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Connessione con l'anticheat fallita",
"BATTLEYE_ANTICHEAT_CorruptedData": "Impossibile convalidare l'integrità del gioco. Reinstalla l'anticheat",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Memoria corrotta. Impossibile convalidare l'integrità della protezione. Reinstalla l'anticheat",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Programma non consentito in esecuzione",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Caricamento dell'anticheat fallito.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "È necessario riavviare il gioco",
"BATTLEYE_ANTICHEAT_GlobalBan": "Il giocatore è stato bannato da BE",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Connessione con l'anticheat fallita. Si prega di riavviare il gioco",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Una chiamata critica all'API di Windows è fallita",
"BATTLEYE_ServiceNeedsToBeUpdated": "La versione dell'anticheat è obsoleta. È necessario riavviare il gioco",
"BATTLEYE_ServiceNotRunningProperly": "L'anticheat non funziona correttamente. È necessario riavviare il gioco",
"BATTLEYE_UnknownRestartReason": "L'anticheat non funziona correttamente. È necessario riavviare il gioco",
"EXIT": "ESCI",
"NEXT": "AVANTI",
"Place in queue:": "Posizione in coda:",
"Profile data loading...": "Caricando i dati del profilo...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Connessione con l'anticheat fallita",
"Servers are currently at full capacity": "I server sono momentaneamente saturi"
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "メールアドレスまたはパスワードが間違っています",
"213 - Error connecting to auth server": "認証に失敗しました。時間を置いてからもう一度お試しください。",
"240 - Servers temporarily unavailable. Please, try later.": "サーバーメンテナンス中",
"ASSEMBLE": "組み立て",
"AUTHORIZATION": "承認",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "サービスのバージョンが不正です",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "アンチチートの接続が失われました",
"BATTLEYE_ANTICHEAT_CorruptedData": "ゲームファイルの整合性の検証に失敗しました。アンチチートプログラムを再インストールしてください",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "メモリの破損によりプロテクションの整合性の検証に失敗しました。アンチチートプログラムを再インストールしてください",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "許可されていないプログラムが実行されています",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "アンチチートプログラムの読込に失敗しました",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "ゲームを再起動してください",
"BATTLEYE_ANTICHEAT_GlobalBan": "BattlEyeによりプレイヤーはBANされました",
"BATTLEYE_ANTICHEAT_QueryTimeout": "アンチチートの接続が失われました。ゲームを再起動してください",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Windows APIの呼び出しに失敗しました。",
"BATTLEYE_ServiceNeedsToBeUpdated": "アンチチートプログラムの更新のためゲームの再起動が必要です",
"BATTLEYE_ServiceNotRunningProperly": "アンチチートプログラムが正常に実行されていません。ゲームの再起動が必要です",
"BATTLEYE_UnknownRestartReason": "アンチチートプログラムが正常に実行されていません。ゲームの再起動が必要です",
"EXIT": "ゲームを終了",
"NEXT": "次へ",
"Place in queue:": "待機人数:",
"Profile data loading...": "プロファイルデータを読み込み中…",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "アンチチートの接続が失われました",
"Servers are currently at full capacity": "サーバーが満員です"
}
}
"menu": {
"206 - Wrong email or password": "メールアドレスまたはパスワードが間違っています",
"213 - Error connecting to auth server": "認証に失敗しました。時間を置いてからもう一度お試しください。",
"240 - Servers temporarily unavailable. Please, try later.": "サーバーメンテナンス中",
"ASSEMBLE": "組み立て",
"AUTHORIZATION": "承認",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "サービスのバージョンが不正です",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "アンチチートの接続が失われました",
"BATTLEYE_ANTICHEAT_CorruptedData": "ゲームファイルの整合性の検証に失敗しました。アンチチートプログラムを再インストールしてください",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "メモリの破損によりプロテクションの整合性の検証に失敗しました。アンチチートプログラムを再インストールしてください",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "許可されていないプログラムが実行されています",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "アンチチートプログラムの読込に失敗しました",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "ゲームを再起動してください",
"BATTLEYE_ANTICHEAT_GlobalBan": "BattlEyeによりプレイヤーはBANされました",
"BATTLEYE_ANTICHEAT_QueryTimeout": "アンチチートの接続が失われました。ゲームを再起動してください",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Windows APIの呼び出しに失敗しました。",
"BATTLEYE_ServiceNeedsToBeUpdated": "アンチチートプログラムの更新のためゲームの再起動が必要です",
"BATTLEYE_ServiceNotRunningProperly": "アンチチートプログラムが正常に実行されていません。ゲームの再起動が必要です",
"BATTLEYE_UnknownRestartReason": "アンチチートプログラムが正常に実行されていません。ゲームの再起動が必要です",
"EXIT": "ゲームを終了",
"NEXT": "次へ",
"Place in queue:": "待機人数:",
"Profile data loading...": "プロファイルデータを読み込み中…",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "アンチチートの接続が失われました",
"Servers are currently at full capacity": "サーバーが満員です"
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "이메일 또는 비밀번호가 잘못되었습니다.",
"213 - Error connecting to auth server": "인증서버에 연결할 수 없습니다. 잠시 후 다시 시도해 주세요.",
"240 - Servers temporarily unavailable. Please, try later.": "서버 점검중",
"ASSEMBLE": "조립",
"AUTHORIZATION": "인증",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "올바르지 않은 버전",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "안티치트 연결에 실패하였습니다.",
"BATTLEYE_ANTICHEAT_CorruptedData": "게임의 무결성 검사에 실패하였습니다. 안티치트를 다시 설치해 주십시오.",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "메모리 손상 발견. 보호 기능의 무결성을 검증하지 못했습니다. 안티치트를 재설치 해주십시오.",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "비인가 프로그램이 실행 중입니다.",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "안티치트 로딩 실패",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "게임을 재시작 해주십시오.",
"BATTLEYE_ANTICHEAT_GlobalBan": "해당 플레이어는 배틀아이에 의해 차단되었습니다.",
"BATTLEYE_ANTICHEAT_QueryTimeout": "안티치트 연결에 실패하였습니다. 게임을 재시작 해주십시오.",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "중요한 윈도우 API 호출 실패",
"BATTLEYE_ServiceNeedsToBeUpdated": "구버전의 안티치트를 사용 중 입니다. 게임을 재시작 해주십시오.",
"BATTLEYE_ServiceNotRunningProperly": "안티치트가 올바르게 작동하지 않습니다. 게임을 재시작 해주십시오.",
"BATTLEYE_UnknownRestartReason": "안티치트가 올바르게 작동하지 않습니다. 게임을 재시작 해주십시오.",
"EXIT": "게임 종료",
"NEXT": "다음",
"Place in queue:": "현재 대기열:",
"Profile data loading...": "프로필 데이터를 불러오는 중입니다...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "안티치트 연결에 실패하였습니다.",
"Servers are currently at full capacity": "현재 서버가 가득 찬 상태입니다."
}
}
"menu": {
"206 - Wrong email or password": "이메일 또는 비밀번호가 잘못되었습니다.",
"213 - Error connecting to auth server": "인증서버에 연결할 수 없습니다. 잠시 후 다시 시도해 주세요.",
"240 - Servers temporarily unavailable. Please, try later.": "서버 점검중",
"ASSEMBLE": "조립",
"AUTHORIZATION": "인증",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "올바르지 않은 버전",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "안티치트 연결에 실패하였습니다.",
"BATTLEYE_ANTICHEAT_CorruptedData": "게임의 무결성 검사에 실패하였습니다. 안티치트를 다시 설치해 주십시오.",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "메모리 손상 발견. 보호 기능의 무결성을 검증하지 못했습니다. 안티치트를 재설치 해주십시오.",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "비인가 프로그램이 실행 중입니다.",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "안티치트 로딩 실패",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "게임을 재시작 해주십시오.",
"BATTLEYE_ANTICHEAT_GlobalBan": "해당 플레이어는 배틀아이에 의해 차단되었습니다.",
"BATTLEYE_ANTICHEAT_QueryTimeout": "안티치트 연결에 실패하였습니다. 게임을 재시작 해주십시오.",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "중요한 윈도우 API 호출 실패",
"BATTLEYE_ServiceNeedsToBeUpdated": "구버전의 안티치트를 사용 중 입니다. 게임을 재시작 해주십시오.",
"BATTLEYE_ServiceNotRunningProperly": "안티치트가 올바르게 작동하지 않습니다. 게임을 재시작 해주십시오.",
"BATTLEYE_UnknownRestartReason": "안티치트가 올바르게 작동하지 않습니다. 게임을 재시작 해주십시오.",
"EXIT": "게임 종료",
"NEXT": "다음",
"Place in queue:": "현재 대기열:",
"Profile data loading...": "프로필 데이터를 불러오는 중입니다...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "안티치트 연결에 실패하였습니다.",
"Servers are currently at full capacity": "현재 서버가 가득 찬 상태입니다."
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Błędy e-mail lub hasło",
"213 - Error connecting to auth server": "Autoryzacja jest teraz niedostępna, spróbuj ponownie później.",
"240 - Servers temporarily unavailable. Please, try later.": "Prace techniczne na serwerach",
"ASSEMBLE": "ZŁÓŻ",
"AUTHORIZATION": "AUTORYZACJA",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Zła wersja serwisu",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Błąd połączenia z anticheatem",
"BATTLEYE_ANTICHEAT_CorruptedData": "Nie można sprawdzić poprawności gry. Przeinstaluj anticheata",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Uszkodzenie pamięci. Nie udało się sprawdzić integralności systemu bezpieczeństwa. Przeinstaluj anticheata",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Wykryto niedozwolony program",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Błąd wczytywania anticheata.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Wymagany restart gry",
"BATTLEYE_ANTICHEAT_GlobalBan": "Gracz został zbanowany przez BattleEye",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Połączenie z anticheatem nie powiodło się. Uruchom grę ponownie",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Krytyczne wywołanie interfejsu API systemu Windows nie powiodło się",
"BATTLEYE_ServiceNeedsToBeUpdated": "Anticheat jest nieaktualny. Wymagany restart gry",
"BATTLEYE_ServiceNotRunningProperly": "Anticheat nie działa prawidłowo. Wymagany restart gry",
"BATTLEYE_UnknownRestartReason": "Anticheat nie działa prawidłowo. Wymagany restart gry",
"EXIT": "WYJŚCIE",
"NEXT": "DALEJ",
"Place in queue:": "Pozycja w kolejce:",
"Profile data loading...": "Wczytywanie danych profilu…",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Błąd połączenia z anticheatem",
"Servers are currently at full capacity": "Wszystkie serwery są obecnie pełne"
}
}
"menu": {
"206 - Wrong email or password": "Błędy e-mail lub hasło",
"213 - Error connecting to auth server": "Autoryzacja jest teraz niedostępna, spróbuj ponownie później.",
"240 - Servers temporarily unavailable. Please, try later.": "Prace techniczne na serwerach",
"ASSEMBLE": "ZŁÓŻ",
"AUTHORIZATION": "AUTORYZACJA",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Zła wersja serwisu",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Błąd połączenia z anticheatem",
"BATTLEYE_ANTICHEAT_CorruptedData": "Nie można sprawdzić poprawności gry. Przeinstaluj anticheata",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Uszkodzenie pamięci. Nie udało się sprawdzić integralności systemu bezpieczeństwa. Przeinstaluj anticheata",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Wykryto niedozwolony program",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Błąd wczytywania anticheata.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Wymagany restart gry",
"BATTLEYE_ANTICHEAT_GlobalBan": "Gracz został zbanowany przez BattleEye",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Połączenie z anticheatem nie powiodło się. Uruchom grę ponownie",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Krytyczne wywołanie interfejsu API systemu Windows nie powiodło się",
"BATTLEYE_ServiceNeedsToBeUpdated": "Anticheat jest nieaktualny. Wymagany restart gry",
"BATTLEYE_ServiceNotRunningProperly": "Anticheat nie działa prawidłowo. Wymagany restart gry",
"BATTLEYE_UnknownRestartReason": "Anticheat nie działa prawidłowo. Wymagany restart gry",
"EXIT": "WYJŚCIE",
"NEXT": "DALEJ",
"Place in queue:": "Pozycja w kolejce:",
"Profile data loading...": "Wczytywanie danych profilu…",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Błąd połączenia z anticheatem",
"Servers are currently at full capacity": "Wszystkie serwery są obecnie pełne"
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Email ou senha incorretos",
"213 - Error connecting to auth server": "Autorização está indisponível agora, por favor tente mais tarde.",
"240 - Servers temporarily unavailable. Please, try later.": "Manutenção do servidor",
"ASSEMBLE": "MONTAR",
"AUTHORIZATION": "AUTORIZAÇÃO",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Versão do serviço incorreta",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Conexão com o anticheat falhou",
"BATTLEYE_ANTICHEAT_CorruptedData": "A validação da integridade do jogo falhou. Reinstale o anticheat",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Memória corrompida. A validação da integridade da proteção falhou. Reinstale o anticheat",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Execução de programa não permitido",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Falha no carregamento do anticheat.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Reinicialização do jogo necessária",
"BATTLEYE_ANTICHEAT_GlobalBan": "O jogador foi banido pelo BE",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Conexão com o anticheat falhou. Por favor reinicie o jogo",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Uma chamada de API crítica do windows falhou",
"BATTLEYE_ServiceNeedsToBeUpdated": "O anticheat está desatualizado. Reinicialização do jogo necessária",
"BATTLEYE_ServiceNotRunningProperly": "O anticheat está rodando incorretamente. Reinicialização do jogo necessária",
"BATTLEYE_UnknownRestartReason": "O anticheat está rodando incorretamente. Reinicialização do jogo necessária",
"EXIT": "SAIR",
"NEXT": "PRÓXIMO",
"Place in queue:": "Lugar na fila:",
"Profile data loading...": "Carregando dados do perfil...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Conexão com o anticheat falhou",
"Servers are currently at full capacity": "Servidores atualmente em capacidade máxima"
}
}
"menu": {
"206 - Wrong email or password": "Email ou senha incorretos",
"213 - Error connecting to auth server": "Autorização está indisponível agora, por favor tente mais tarde.",
"240 - Servers temporarily unavailable. Please, try later.": "Manutenção do servidor",
"ASSEMBLE": "MONTAR",
"AUTHORIZATION": "AUTORIZAÇÃO",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Versão do serviço incorreta",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Conexão com o anticheat falhou",
"BATTLEYE_ANTICHEAT_CorruptedData": "A validação da integridade do jogo falhou. Reinstale o anticheat",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Memória corrompida. A validação da integridade da proteção falhou. Reinstale o anticheat",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "Execução de programa não permitido",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Falha no carregamento do anticheat.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Reinicialização do jogo necessária",
"BATTLEYE_ANTICHEAT_GlobalBan": "O jogador foi banido pelo BE",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Conexão com o anticheat falhou. Por favor reinicie o jogo",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Uma chamada de API crítica do windows falhou",
"BATTLEYE_ServiceNeedsToBeUpdated": "O anticheat está desatualizado. Reinicialização do jogo necessária",
"BATTLEYE_ServiceNotRunningProperly": "O anticheat está rodando incorretamente. Reinicialização do jogo necessária",
"BATTLEYE_UnknownRestartReason": "O anticheat está rodando incorretamente. Reinicialização do jogo necessária",
"EXIT": "SAIR",
"NEXT": "PRÓXIMO",
"Place in queue:": "Lugar na fila:",
"Profile data loading...": "Carregando dados do perfil...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Conexão com o anticheat falhou",
"Servers are currently at full capacity": "Servidores atualmente em capacidade máxima"
}
}
@@ -1,28 +1,28 @@
{
"menu": {
"206 - Wrong email or password": "Неверный email или пароль",
"213 - Error connecting to auth server": "Авторизация временно невозможна, попробуйте позже.",
"240 - Servers temporarily unavailable. Please, try later.": "Cервера на техобслуживании",
"ASSEMBLE": "СОБРАТЬ",
"AUTHORIZATION": "АВТОРИЗАЦИЯ",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Необходим рестарт игры - запущена устаревшая версия античита",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Потеряно соединение с античитом",
"BATTLEYE_ANTICHEAT_CorruptedData": "Запущена некорректная версия игры. Пожалуйста, проверьте целостность файлов игры",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Запущена некорректная версия античита. Пожалуйста, перустановите античит",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "На клиенте запущено запрещенное ПО",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Загрузка античита не удалась.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Требуется перезапуск игры",
"BATTLEYE_ANTICHEAT_GlobalBan": "Игрок был забанен BattlEye",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Потеряно соединение с античитом. Пожалуйста, перезапустите игру",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Ошибка запроса приложения от WIndows",
"BATTLEYE_ServiceNeedsToBeUpdated": "Запущена устаревшая версия античита. Необходим перезапуск игры",
"BATTLEYE_ServiceNotRunningProperly": "Античит запущен некорректно. Необходим перезапуск игры",
"BATTLEYE_UnknownRestartReason": "Античит запущен некорректно. Необходим перезапуск игры",
"EXIT": "ВЫХОД",
"NEXT": "ДАЛЕЕ",
"Place in queue:": "Место в очереди:",
"Profile data loading...": "Загрузка данных профиля...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Потеряно соединение с античитом",
"Servers are currently at full capacity": "В данный момент сервера переполнены"
}
}
"menu": {
"206 - Wrong email or password": "Неверный email или пароль",
"213 - Error connecting to auth server": "Авторизация временно невозможна, попробуйте позже.",
"240 - Servers temporarily unavailable. Please, try later.": "Cервера на техобслуживании",
"ASSEMBLE": "СОБРАТЬ",
"AUTHORIZATION": "АВТОРИЗАЦИЯ",
"BATTLEYE_ANTICHEAT_BadServiceVersion": "Необходим рестарт игры - запущена устаревшая версия античита",
"BATTLEYE_ANTICHEAT_ClientNotResponding": "Потеряно соединение с античитом",
"BATTLEYE_ANTICHEAT_CorruptedData": "Запущена некорректная версия игры. Пожалуйста, проверьте целостность файлов игры",
"BATTLEYE_ANTICHEAT_CorruptedMemory": "Запущена некорректная версия античита. Пожалуйста, перустановите античит",
"BATTLEYE_ANTICHEAT_DisallowedProgram": "На клиенте запущено запрещенное ПО",
"BATTLEYE_ANTICHEAT_FailedToLoadAnticheat": "Загрузка античита не удалась.",
"BATTLEYE_ANTICHEAT_GameRestartRequired": "Требуется перезапуск игры",
"BATTLEYE_ANTICHEAT_GlobalBan": "Игрок был забанен BattlEye",
"BATTLEYE_ANTICHEAT_QueryTimeout": "Потеряно соединение с античитом. Пожалуйста, перезапустите игру",
"BATTLEYE_ANTICHEAT_WinAPIFailure": "Ошибка запроса приложения от WIndows",
"BATTLEYE_ServiceNeedsToBeUpdated": "Запущена устаревшая версия античита. Необходим перезапуск игры",
"BATTLEYE_ServiceNotRunningProperly": "Античит запущен некорректно. Необходим перезапуск игры",
"BATTLEYE_UnknownRestartReason": "Античит запущен некорректно. Необходим перезапуск игры",
"EXIT": "ВЫХОД",
"NEXT": "ДАЛЕЕ",
"Place in queue:": "Место в очереди:",
"Profile data loading...": "Загрузка данных профиля...",
"SABER_ANTICHEAT_AnticheatConnectionFailed": "Потеряно соединение с античитом",
"Servers are currently at full capacity": "В данный момент сервера переполнены"
}
}

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