Merge branch 'develop'

This commit is contained in:
Refringe
2025-09-05 23:37:12 -04:00
894 changed files with 1185412 additions and 1024427 deletions
+7
View File
@@ -27,6 +27,7 @@ csharp_new_line_before_finally = true
csharp_new_line_before_members_in_object_initializers = true
csharp_new_line_before_members_in_anonymous_types = true
csharp_new_line_between_query_expression_clauses = true
csharp_style_namespace_declarations = file_scoped:warning
# Indentation preferences
csharp_indent_block_contents = true
@@ -144,6 +145,12 @@ csharp_space_between_square_brackets = false
# ReSharper properties
resharper_wrap_object_and_collection_initializer_style = chop_always
resharper_merge_into_pattern_highlighting = none
resharper_member_can_be_made_static_global_highlighting = none
resharper_possible_multiple_enumeration_highlighting = none
# Ignored warnings
dotnet_diagnostic.CS1591.severity = none
dotnet_diagnostic.CA1822.severity = none
# Xml project files
[*.{csproj,vbproj,vcxproj,vcxproj.filters,proj,nativeproj,locproj}]
+3
View File
@@ -423,3 +423,6 @@ fabric.properties
# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
# Automatically generated file containing metadata on build
Libraries/SPTarkov.Server.Core/Utils/ProgramStatics.Generated.cs
-20
View File
@@ -1,20 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\Build.props" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<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" />
<ProjectReference Include="..\Libraries\SPTarkov.DI\SPTarkov.DI.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="Assets\**">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>
-28
View File
@@ -1,28 +0,0 @@
using BenchmarkDotNet.Attributes;
using SPTarkov.Server.Core.Utils;
namespace Benchmarks
{
[SimpleJob(warmupCount: 10, iterationCount: 25)]
[MemoryDiagnoser]
public class MathUtilInterpBenchmarks
{
private MathUtil _mathUtil;
private double input = 15d;
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()
{
_mathUtil = new MathUtil();
}
[Benchmark]
public void Interp()
{
_mathUtil.Interp1(input, x, y);
}
}
}
+14 -1
View File
@@ -1,9 +1,22 @@
<Project>
<PropertyGroup>
<Version>4.0.0-prerelease2</Version>
<!-- SPT specific -->
<SptVersion Condition="'$(SptVersion)' == ''">4.0.0</SptVersion>
<SptCommit Condition="'$(SptCommit)' == ''">a12b34</SptCommit>
<SptBuildTime Condition="'$(SptBuildTime)' == ''">0000000000</SptBuildTime>
<SptBuildType Condition="'$(SptBuildType)' == ''">LOCAL</SptBuildType>
<!-- BuildType options - LOCAL, DEBUG, RELEASE, BLEEDINGEDGE, BLEEDINGEDGEMODS - *must be all caps*-->
<!-- SemVer-compliant version -->
<!-- Format: 4.0.0-LOCAL+a12b34.0000000000 -->
<Version>$(SptVersion)-$(SptBuildType)+$(SptCommit).$(SptBuildTime)</Version>
<AssemblyVersion>$(SptVersion)</AssemblyVersion>
<FileVersion>$(SptVersion)</FileVersion>
<InformationalVersion>$(Version)</InformationalVersion>
<!-- Project settings -->
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<RepositoryType>Git</RepositoryType>
<CETCompat>false</CETCompat>
</PropertyGroup>
</Project>
+12
View File
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Fixed
- Remove unused dependencies and improve code quality [#544](https://github.com/sp-tarkov/server-csharp/pull/544)
[unreleased]: https://github.com/sp-tarkov/server-csharp/compare/47b6c3426e6f7db2e1b6d97281d850c89466aba0..HEAD
@@ -31,7 +31,7 @@ public static class ObjectExtensions
/// <typeparam name="T"></typeparam>
/// <returns></returns>
/// <exception cref="ArgumentNullException"></exception>
public static bool ContainsJsonProp<T>(this object? obj, T key)
public static bool ContainsJsonProperty<T>(this object? obj, T key)
{
ArgumentNullException.ThrowIfNull(obj);
ArgumentNullException.ThrowIfNull(key);
@@ -39,7 +39,7 @@ public static class ObjectExtensions
return TryGetCachedProperty(obj.GetType(), key.ToString(), out _);
}
public static T? GetByJsonProp<T>(this object? obj, string? toLower)
public static T? GetByJsonProperty<T>(this object? obj, string? toLower)
{
ArgumentNullException.ThrowIfNull(obj);
ArgumentNullException.ThrowIfNull(toLower);
@@ -52,7 +52,7 @@ public static class ObjectExtensions
return (T?)cachedProperty.GetValue(obj);
}
public static List<object> GetAllPropValuesAsList(this object? obj)
public static List<object> GetAllPropertyValuesAsList(this object? obj)
{
ArgumentNullException.ThrowIfNull(obj);
@@ -81,7 +81,7 @@ public static class ObjectExtensions
return result;
}
public static Dictionary<string, object?> GetAllPropsAsDict(this object? obj)
public static Dictionary<string, object?> GetAllPropertiesAsDictionary(this object? obj)
{
if (obj is null)
{
@@ -116,9 +116,56 @@ public static class ObjectExtensions
return resultDict;
}
public static T ToObject<T>(this JsonElement element)
public static T? ToObject<T>(this JsonElement element)
{
var json = element.GetRawText();
return JsonSerializer.Deserialize<T>(json);
}
public static object AddAllToExtensionData(this object obj, Dictionary<string, object> extensionData)
{
foreach (var keyValuePair in extensionData)
{
obj.AddToExtensionData(keyValuePair.Key, keyValuePair.Value);
}
return obj;
}
public static object AddToExtensionData(this object obj, string key, object value)
{
obj.GetExtensionData().Add(key, value);
return obj;
}
public static object RemoveFromExtensionData(this object obj, string key)
{
obj.GetExtensionData().Remove(key);
return obj;
}
public static object RemoveAllFromExtensionData(this object obj)
{
obj.GetExtensionData().Clear();
return obj;
}
public static Dictionary<string, object> GetExtensionData(this object obj)
{
if (!obj.TryGetExtensionData(out var extensionData))
{
throw new Exception(
$"Attempted to get from extension data for type {obj.GetType().FullName}, but the type doesnt contain ExtensionData or it is null"
);
}
return extensionData!;
}
public static bool TryGetExtensionData(this object obj, out Dictionary<string, object>? extensionData)
{
extensionData =
obj.GetType().GetProperty("ExtensionData", BindingFlags.Instance | BindingFlags.Public)?.GetValue(obj)
as Dictionary<string, object>;
return extensionData is not null;
}
}
@@ -12,6 +12,7 @@
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SemanticVersioning" Version="3.0.0" />
+11 -9
View File
@@ -1,13 +1,15 @@
namespace SPTarkov.Common.Semver;
using Version = SemanticVersioning.Version;
namespace SPTarkov.Common.Semver;
public interface ISemVer
{
string MaxSatisfying(List<string> versions);
string MaxSatisfying(IEnumerable<string> versions);
string MaxSatisfying(string version, List<string> versions);
string MaxSatisfying(string version, IEnumerable<string> versions);
bool Satisfies(string version, string testVersion);
bool AnySatisfies(string version, List<string> testVersions);
bool IsValid(string version);
bool IsValidRange(string version);
string MaxSatisfying(List<Version> versions);
string MaxSatisfying(IEnumerable<Version> versions);
string MaxSatisfying(string version, List<Version> versions);
string MaxSatisfying(string version, IEnumerable<Version> versions);
bool Satisfies(Version version, Version testVersion);
bool AnySatisfies(Version version, List<Version> testVersions);
bool IsValid(Version version);
bool IsValidRange(Version version);
}
@@ -5,43 +5,44 @@ namespace SPTarkov.Common.Semver.Implementations;
public class SemanticVersioningSemVer : ISemVer
{
public string MaxSatisfying(List<string> versions)
public string MaxSatisfying(List<Version> versions)
{
return MaxSatisfying(versions.AsEnumerable());
}
public string MaxSatisfying(IEnumerable<string> versions)
public string MaxSatisfying(IEnumerable<Version> versions)
{
return MaxSatisfying("*", versions);
}
public string MaxSatisfying(string version, List<string> versions)
public string MaxSatisfying(string version, List<Version> versions)
{
return MaxSatisfying(version, versions.AsEnumerable());
}
public string MaxSatisfying(string version, IEnumerable<string> versions)
public string MaxSatisfying(string version, IEnumerable<Version> versions)
{
return Range.MaxSatisfying(version, versions, true);
var versionRanges = versions.Select(versionInner => versionInner.ToString());
return Range.MaxSatisfying(version, versionRanges, true);
}
public bool Satisfies(string version, string testVersion)
public bool Satisfies(Version version, Version testVersion)
{
return Range.IsSatisfied(testVersion, version, true);
return Range.IsSatisfied(testVersion.ToString(), version.ToString(), true);
}
public bool AnySatisfies(string version, List<string> testVersions)
public bool AnySatisfies(Version version, List<Version> testVersions)
{
return testVersions.Any(v => Satisfies(version, v));
}
public bool IsValid(string version)
public bool IsValid(Version version)
{
return Version.TryParse(version, out _);
return Version.TryParse(version.ToString(), out _);
}
public bool IsValidRange(string version)
public bool IsValidRange(Version version)
{
return Range.TryParse(version, out _);
return Range.TryParse(version.ToString(), out _);
}
}
@@ -1,4 +1,5 @@
using System.Reflection;
using Microsoft.Extensions.DependencyInjection;
using SPTarkov.DI.Annotations;
namespace SPTarkov.DI;
+3 -5
View File
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Build.props" />
<PropertyGroup>
<PackageId>SPTarkov.DI</PackageId>
@@ -12,12 +12,10 @@
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
<NoDefaultLaunchSettingsFile>true</NoDefaultLaunchSettingsFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.7" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SPTarkov.Common\SPTarkov.Common.csproj" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.8" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Pack="true" Visible="false" PackagePath="" />
@@ -3,9 +3,39 @@ using HarmonyLib;
namespace SPTarkov.Reflection.Patching;
/// <summary>
/// Harmony patch wrapper class. See mod example 6.1 for usage.
/// </summary>
/// <remarks>
/// A known limitation is that exceptions and logging are only sent to the console and are not color coded. There is no disk logging here.
/// </remarks>
public abstract class AbstractPatch
{
private readonly Harmony _harmony;
/// <summary>
/// Method this patch targets
/// </summary>
public MethodBase? TargetMethod { get; private set; }
/// <summary>
/// Is this patch active?
/// </summary>
public bool IsActive { get; private set; }
/// <summary>
/// Is this patch managed by the PatchManager?
/// </summary>
public bool IsManaged { get; private set; }
/// <summary>
/// The harmony Id assigned to this patch, usually the name of the patch class.
/// </summary>
public string HarmonyId
{
get { return _harmony?.Id ?? "Harmony Id is null for this patch"; }
}
private Harmony? _harmony;
private readonly List<HarmonyMethod> _prefixList;
private readonly List<HarmonyMethod> _postfixList;
private readonly List<HarmonyMethod> _transpilerList;
@@ -33,7 +63,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 PatchException($"{HarmonyId}: At least one of the patch methods must be specified");
}
}
@@ -41,7 +71,7 @@ public abstract class AbstractPatch
/// Get original method
/// </summary>
/// <returns>Method</returns>
protected abstract MethodBase GetTargetMethod();
protected abstract MethodBase? GetTargetMethod();
/// <summary>
/// Get HarmonyMethod from string
@@ -69,65 +99,126 @@ public abstract class AbstractPatch
/// </summary>
public void Enable()
{
var target = GetTargetMethod();
if (target == null)
// We never want to have duplicated patches, prevent it.
if (IsActive)
{
throw new InvalidOperationException($"{_harmony.Id}: TargetMethod is null");
return;
}
TargetMethod = GetTargetMethod();
if (TargetMethod == null)
{
throw new PatchException($"{HarmonyId}: TargetMethod is null");
}
try
{
// Using null forgiving operator here because we want to throw if _harmony is null, but want the compiler to shut up about it.
foreach (var prefix in _prefixList)
{
_harmony.Patch(target, prefix: prefix);
_harmony!.Patch(TargetMethod, prefix: prefix);
}
foreach (var postfix in _postfixList)
{
_harmony.Patch(target, postfix: postfix);
_harmony!.Patch(TargetMethod, postfix: postfix);
}
foreach (var transpiler in _transpilerList)
{
_harmony.Patch(target, transpiler: transpiler);
_harmony!.Patch(TargetMethod, transpiler: transpiler);
}
foreach (var finalizer in _finalizerList)
{
_harmony.Patch(target, finalizer: finalizer);
_harmony!.Patch(TargetMethod, finalizer: finalizer);
}
foreach (var ilmanipulator in _ilManipulatorList)
{
_harmony.Patch(target, ilmanipulator: ilmanipulator);
_harmony!.Patch(TargetMethod, ilmanipulator: ilmanipulator);
}
ModPatchCache.AddPatch(this);
IsActive = true;
}
catch (Exception ex)
{
throw new Exception($"{_harmony.Id}:", ex);
throw new Exception($"{HarmonyId}:", ex);
}
}
/// <summary>
/// Internal use only, called from the patch manager.
/// </summary>
/// <param name="harmony">Harmony instance of the patch manager</param>
internal void Enable(Harmony harmony)
{
if (!ReferenceEquals(_harmony, harmony))
{
// Override the initial harmony instance with the PatchManagers instance
_harmony = harmony;
}
IsManaged = true;
Enable();
}
/// <summary>
/// Remove applied patch from target
/// </summary>
public void Disable()
{
// Nothing to disable
if (!IsActive)
{
return;
}
var target = GetTargetMethod();
if (target == null)
{
throw new InvalidOperationException($"{_harmony.Id}: TargetMethod is null");
throw new PatchException($"{HarmonyId}: TargetMethod is null");
}
try
{
_harmony.Unpatch(target, HarmonyPatchType.All, _harmony.Id);
// Using null forgiving operator here because we want to throw if _harmony is null, but want the compiler to shut up about it.
_harmony!.Unpatch(target, HarmonyPatchType.All, _harmony.Id);
}
catch (Exception ex)
{
throw new Exception($"{_harmony.Id}:", ex);
throw new PatchException($"{HarmonyId}:", ex);
}
if (!ModPatchCache.RemovePatch(this))
{
throw new PatchException($"{HarmonyId}: Target patch not present in cache, a mod is likely externally altering it.");
}
IsActive = false;
}
/// <summary>
/// Internal use only, called from the patch manager.
/// </summary>
/// <param name="harmony">Harmony instance of the patch manager</param>
internal void Disable(Harmony harmony)
{
// Attempting to disable a patch that is not managed by the patch manager
if (harmony is null || !ReferenceEquals(_harmony, harmony))
{
throw new PatchException(
$"Patch: {GetType().Name} is attempting to be disabled internally while not managed by the patch manager."
);
}
Disable();
// This patch is no longer considered managed.
IsManaged = false;
}
}
@@ -1,17 +1,28 @@
namespace SPTarkov.Reflection.Patching
{
[AttributeUsage(AttributeTargets.Method)]
public class PatchPrefixAttribute : Attribute { }
namespace SPTarkov.Reflection.Patching;
[AttributeUsage(AttributeTargets.Method)]
public class PatchPostfixAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Method)]
public class PatchPrefixAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Method)]
public class PatchTranspilerAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Method)]
public class PatchPostfixAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Method)]
public class PatchFinalizerAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Method)]
public class PatchTranspilerAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Method)]
public class PatchIlManipulatorAttribute : Attribute { }
}
[AttributeUsage(AttributeTargets.Method)]
public class PatchFinalizerAttribute : Attribute { }
[AttributeUsage(AttributeTargets.Method)]
public class PatchIlManipulatorAttribute : Attribute { }
/// <summary>
/// If added to a patch, it will not be used during auto patching
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class IgnoreAutoPatchAttribute : Attribute;
/// <summary>
/// If added to a patch, it will only be enabled during debug builds
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public class DebugPatchAttribute : Attribute;
@@ -0,0 +1,89 @@
namespace SPTarkov.Reflection.Patching;
/// <summary>
/// Cache of active patches for mod developers to use for compatibility reasons
/// </summary>
public static class ModPatchCache
{
private static readonly List<AbstractPatch> _activePatches = [];
// This class contains tighter access rules than we usually would implement in the project,
// the reason for this is so that the data is a true representation of what's happening with patches without any external interference.
// TODO: Mod GUID/Name associations to patches, need to think on that.
// Required parameter on AbstractPatch ctor maybe?
/// <summary>
/// Get all active patches
/// </summary>
/// <returns>
/// List of active patches
/// </returns>
/// <remarks>
/// This should never be called before PreSptLoad is completed, otherwise could be empty.
/// </remarks>
public static IReadOnlyList<AbstractPatch> GetActivePatches()
{
// We're not exposing _activePatches so it cant be altered outside of this class. Do NOT implement this as a property.
// Mod developers can still enable/disable these patches at will, this is fine, just don't allow external removal from the cache.
return _activePatches.AsReadOnly();
}
/// <summary>
/// Get all actively patched target method names
/// </summary>
/// <returns>
/// List of fully quantified method names; including namespace, type and method name
/// </returns>
/// <remarks>
/// This should never be called before PreSptLoad is completed, otherwise could be empty.
/// </remarks>
public static List<string> GetActivePatchedMethodNames()
{
var result = new List<string>();
foreach (var patch in _activePatches)
{
// Fullname includes namespace
var typeName = patch.TargetMethod?.DeclaringType?.FullName;
var methodName = patch.TargetMethod?.Name;
if (typeName != null && methodName != null)
{
result.Add($"{typeName}.{methodName}");
continue;
}
result.Add($"{patch.HarmonyId}: Type or method is null for this patch.");
}
return result;
}
/// <summary>
/// Add a patch to the cache
/// </summary>
/// <param name="patch">Patch to add to cache</param>
/// <remarks>
/// DO NOT PATCH THIS METHOD, IT IS INTERNAL FOR A REASON. YOU ARE ONLY HARMING OTHER MOD DEVELOPERS BY DOING SO.
/// </remarks>
internal static void AddPatch(AbstractPatch patch)
{
_activePatches.Add(patch);
}
/// <summary>
/// Remove a patch from the cache
/// </summary>
/// <param name="patch">Patch to remove</param>
/// <returns>
/// True if patch was removed
/// </returns>
/// <remarks>
/// DO NOT PATCH THIS METHOD, IT IS INTERNAL FOR A REASON. YOU ARE ONLY HARMING OTHER MOD DEVELOPERS BY DOING SO.
/// </remarks>
internal static bool RemovePatch(AbstractPatch patch)
{
return _activePatches.Remove(patch);
}
}
@@ -0,0 +1,10 @@
namespace SPTarkov.Reflection.Patching;
public class PatchException : Exception
{
public PatchException(string message)
: base(message) { }
public PatchException(string message, Exception innerException)
: base(message, innerException) { }
}
@@ -0,0 +1,268 @@
using System.Diagnostics;
using System.Reflection;
using HarmonyLib;
using SPTarkov.DI.Annotations;
namespace SPTarkov.Reflection.Patching;
/// <summary>
/// A manager for your patches. You MUST set the PatcherName property BEFORE enabling patches. This is used to identify your harmony instance.
/// </summary>
/// <remarks>
/// A known limitation is that exceptions and logging are only sent to the console and are not color coded. There is no disk logging here.
/// </remarks>
[Injectable]
public class PatchManager
{
/// <summary>
/// Patcher name to be assigned to the harmony instance this manager controls. MUST be set prior to patching
/// </summary>
public string? PatcherName { get; set; }
/// <summary>
/// Should the manager find and enable patches on its own?
/// </summary>
public bool AutoPatch { get; set; }
private Harmony? _harmony;
private readonly List<AbstractPatch> _patches = [];
/// <summary>
/// Adds a single patch
/// </summary>
/// <param name="patch">Patch to add</param>
/// <exception cref="PatchException"> Thrown if autopatch is enabled. You cannot add patches during auto patching. </exception>
public void AddPatch(AbstractPatch patch)
{
if (AutoPatch)
{
throw new PatchException("You cannot manually add patches when using auto patching");
}
_patches.Add(patch);
}
/// <summary>
/// Adds a list of patches
/// </summary>
/// <param name="patchList">List of patches to add</param>
/// <exception cref="PatchException"> Thrown if autopatch is enabled. You cannot add patches during auto patching. </exception>
public void AddPatches(List<AbstractPatch> patchList)
{
if (AutoPatch)
{
throw new PatchException("You cannot manually add patches when using auto patching");
}
_patches.AddRange(patchList);
}
/// <summary>
/// Retrieves a list of types from the given assembly that inherit from <see cref="AbstractPatch"/>, <br/>
/// excluding those marked with <see cref="IgnoreAutoPatchAttribute"/> and, in non-debug builds, <br/>
/// excluding those marked with <see cref="DebugPatchAttribute"/>.
/// </summary>
/// <param name="assembly">The assembly to scan for patch types.</param>
/// <returns>
/// A list of types that inherit from <see cref="AbstractPatch"/> and meet the filtering criteria.
/// </returns>
private List<Type> GetPatches(Assembly assembly)
{
List<Type> patches = [];
var baseType = typeof(AbstractPatch);
var ignoreAttrType = typeof(IgnoreAutoPatchAttribute);
foreach (var type in assembly.GetTypes())
{
if (type.BaseType != baseType)
{
continue;
}
if (type.IsDefined(ignoreAttrType, inherit: false))
{
continue;
}
// Assembly was not built in debug and this is a debug patch, skip it.
if (!IsAssemblyDebugBuild(assembly) && type.IsDefined(typeof(DebugPatchAttribute), inherit: false))
{
continue;
}
patches.Add(type);
}
return patches;
}
/// <summary>
/// Enables all patches, if <see cref="AutoPatch"/> is enabled it will find them automatically
/// </summary>
/// <exception cref="PatchException">
/// Thrown if PatcherName was not set, or there are no patches found during auto patching, or there are no patches added manually.
/// </exception>
public void EnablePatches()
{
if (PatcherName is null)
{
throw new PatchException("You cannot enable patches without setting a PatcherName.");
}
_harmony ??= new Harmony(PatcherName);
if (AutoPatch)
{
var patches = GetPatches(Assembly.GetCallingAssembly());
if (patches.Count == 0)
{
throw new PatchException("Could not find any patches defined in the assembly during auto patching");
}
var successfulPatches = 0;
foreach (var type in patches)
{
try
{
((AbstractPatch)Activator.CreateInstance(type)).Enable(_harmony);
successfulPatches++;
}
catch (Exception ex)
{
Console.WriteLine($"Failed to init [{type.Name}]: {ex.Message}");
}
}
Console.WriteLine($"Enabled {successfulPatches} patches");
return;
}
if (_patches.Count == 0)
{
throw new PatchException("No patches have been added to enable. You must add them with AddPatches()");
}
// ReSharper disable once ForCanBeConvertedToForeach
for (var i = 0; i < _patches.Count; i++)
{
try
{
_patches[i].Enable(_harmony);
}
catch (Exception ex)
{
Console.WriteLine($"Failed to init [{_patches[i].GetType().Name}]: {ex.Message}");
}
}
}
/// <summary>
/// Disables all patches, if <see cref="AutoPatch"/> is enabled it will find them automatically
/// </summary>
/// <exception cref="PatchException">
/// Thrown if there are no enabled patches, or no patches are found during auto patch disabling, or there were no patches added manually to disable.
/// </exception>
public void DisablePatches()
{
if (_harmony is null)
{
throw new PatchException("You cannot disable without first enabling patches. _harmony is null");
}
if (AutoPatch)
{
var patches = GetPatches(Assembly.GetCallingAssembly());
if (patches.Count == 0)
{
throw new PatchException("Could not find any patches defined in the assembly during auto patching");
}
var disabledPatches = 0;
foreach (var type in patches)
{
try
{
((AbstractPatch)Activator.CreateInstance(type)).Disable(_harmony);
disabledPatches++;
}
catch (Exception ex)
{
Console.WriteLine($"Failed to disable [{type.Name}]: {ex.Message}");
}
}
Console.WriteLine($"Disabled {disabledPatches} patches");
return;
}
if (_patches.Count == 0)
{
throw new PatchException("There were no patches to disable");
}
// ReSharper disable once ForCanBeConvertedToForeach
for (var i = 0; i < _patches.Count; i++)
{
try
{
_patches[i].Disable(_harmony);
}
catch (Exception ex)
{
Console.WriteLine($"Failed to disable [{_patches[i].GetType().Name}]: {ex.Message}");
}
}
}
/// <summary>
/// Enables a single patch
/// </summary>
/// <param name="patch"></param>
/// <exception cref="PatchException">
/// Thrown if PatcherName was not set
/// </exception>
public void EnablePatch(AbstractPatch patch)
{
if (PatcherName is null || _harmony is null)
{
throw new PatchException("You cannot enable patches without setting a PatcherName.");
}
patch.Enable(_harmony);
}
/// <summary>
/// Disables a single patch
/// </summary>
/// <param name="patch"></param>
public void DisablePatch(AbstractPatch patch)
{
if (!patch.IsActive)
{
Console.WriteLine($"Cannot disable patch: {patch.HarmonyId} because it is not active");
return;
}
if (_harmony is null)
{
throw new PatchException("You cannot disable without first enabling patches. _harmony is null");
}
patch.Disable(_harmony);
}
/// <summary>
/// Check if an assembly is built in debug mode
/// </summary>
/// <param name="assembly">Assembly to check</param>
/// <returns>True if debug mode</returns>
private bool IsAssemblyDebugBuild(Assembly assembly)
{
var debugAttr = assembly.GetCustomAttribute<DebuggableAttribute>();
return debugAttr != null && debugAttr.IsJITOptimizerDisabled;
}
}
@@ -11,6 +11,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<OutputType>Library</OutputType>
<IsPackable>true</IsPackable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="..\..\LICENSE" Pack="true" Visible="false" PackagePath="" />
@@ -18,4 +19,7 @@
<ItemGroup>
<PackageReference Include="HarmonyX" Version="2.14.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\SPTarkov.DI\SPTarkov.DI.csproj" />
</ItemGroup>
</Project>
@@ -0,0 +1,3 @@
# This is required as dotnet run app.cs doesn't work yet from the same directory as the csproj
cd build
dotnet run PostBuild.cs
@@ -60,7 +60,8 @@
"botRolesThatMustHaveUniqueName": [
"assault",
"pmcusec",
"pmcbear"
"pmcbear",
"exusec"
],
"botRolesWithDogTags": [
"pmcbear",
@@ -834,13 +835,6 @@
"4": 5,
"5": 1,
"6": 1
},
"side_plate": {
"2": 25,
"3": 20,
"4": 5,
"5": 1,
"6": 1
}
}
},
@@ -877,13 +871,6 @@
"4": 5,
"5": 1,
"6": 1
},
"side_plate": {
"2": 30,
"3": 20,
"4": 5,
"5": 1,
"6": 1
}
}
},
@@ -920,13 +907,6 @@
"4": 24,
"5": 5,
"6": 4
},
"side_plate": {
"2": 10,
"3": 15,
"4": 24,
"5": 5,
"6": 4
}
}
},
@@ -963,13 +943,6 @@
"4": 35,
"5": 15,
"6": 5
},
"side_plate": {
"2": 2,
"3": 10,
"4": 35,
"5": 15,
"6": 5
}
}
},
@@ -1049,13 +1022,6 @@
"4": 10,
"5": 40,
"6": 50
},
"side_plate": {
"2": 0,
"3": 0,
"4": 10,
"5": 40,
"6": 50
}
}
}
@@ -1,7 +1,6 @@
{
"sptVersion": "4.0.0",
"projectName": "SPT",
"compatibleTarkovVersion": "0.16.0.38114",
"compatibleTarkovVersion": "0.16.0.38809",
"serverName": "SPT Server",
"profileSaveIntervalSeconds": 15,
"sptFriendNickname": "SPT",
@@ -6258,6 +6258,12 @@
"value": 1,
"entity": "5c0647fdd443bc2504c2d371"
},
{
"_id": "668014ea2b680c65290bea93",
"Type": "UnlockTrader",
"value": 1,
"entity": "579dc571d53a0658a154fbec"
},
{
"_id": "668014ea2b680c65290bbe53",
"Type": "HideoutAreaLevel",
@@ -9565,6 +9571,354 @@
"collectionTimeHours": 72,
"associatedEvent": "Promo",
"maxToSendPlayer": 5
},
"RELEASEISCOMING": {
"items": [
{
"_id": "68a3bb64b8031ab7fc0e628c",
"_tpl": "5c165d832e2216398b5a7e36",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e628e",
"_tpl": "5aa2ba19e5b5b00014028f4e",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e6290",
"_tpl": "557ff21e4bdc2d89578b4586",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e6292",
"_tpl": "60098ad7c2240c0fe85c570a",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e6294",
"_tpl": "5e831507ea0a7c419c2f9bd9",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e6296",
"_tpl": "5e831507ea0a7c419c2f9bd9",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e6298",
"_tpl": "6272874a6c47bd74f92e2087",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e629a",
"_tpl": "6272874a6c47bd74f92e2087",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e629c",
"_tpl": "6272874a6c47bd74f92e2087",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e629e",
"_tpl": "64b7af434b75259c590fa893",
"upd": {
"StackObjectsCount": 60
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62a0",
"_tpl": "5656d7c34bdc2d9d198b4587",
"upd": {
"StackObjectsCount": 60
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62a2",
"_tpl": "5656d7c34bdc2d9d198b4587",
"upd": {
"StackObjectsCount": 60
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62a4",
"_tpl": "5448be9a4bdc2dfd2f8b456a",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62a6",
"_tpl": "5448be9a4bdc2dfd2f8b456a",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62a8",
"_tpl": "5a0c27731526d80618476ac4",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62aa",
"_tpl": "5c0e531d86f7747fa23f4d42",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62ac",
"_tpl": "5c0e530286f7747fa1419862",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62ae",
"_tpl": "5e8488fa988a8701445df1e4",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62b0",
"_tpl": "544fb3f34bdc2d03748b456a",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62b2",
"_tpl": "5755383e24597772cb798966",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62b4",
"_tpl": "5d02778e86f774203e7dedbe",
"upd": {
"StackObjectsCount": 1
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62b5",
"_tpl": "5a0ec13bfcdbcb00165aa685",
"upd": {
"Repairable": {
"Durability": 100,
"MaxDurability": 100
}
},
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62b6",
"_tpl": "59e649f986f77411d949b246",
"parentId": "68a3bb64b8031ab7fc0e62b5",
"slotId": "mod_gas_block"
},
{
"_id": "68a3bb64b8031ab7fc0e62b7",
"_tpl": "5b80242286f77429445e0b47",
"parentId": "68a3bb64b8031ab7fc0e62b6",
"slotId": "mod_handguard"
},
{
"_id": "68a3bb64b8031ab7fc0e62b8",
"_tpl": "5b8403a086f7747ff856f4e2",
"parentId": "68a3bb64b8031ab7fc0e62b7",
"slotId": "mod_mount_000"
},
{
"_id": "68a3bb64b8031ab7fc0e62b9",
"_tpl": "65169d5b30425317755f8e25",
"parentId": "68a3bb64b8031ab7fc0e62b8",
"slotId": "mod_foregrip"
},
{
"_id": "68a3bb64b8031ab7fc0e62ba",
"_tpl": "5b84038986f774774913b0c1",
"parentId": "68a3bb64b8031ab7fc0e62b7",
"slotId": "mod_mount_001"
},
{
"_id": "68a3bb64b8031ab7fc0e62bb",
"_tpl": "5cc9c20cd7f00c001336c65d",
"parentId": "68a3bb64b8031ab7fc0e62ba",
"slotId": "mod_tactical"
},
{
"_id": "68a3bb64b8031ab7fc0e62bc",
"_tpl": "5e2192a498a36665e8337386",
"parentId": "68a3bb64b8031ab7fc0e62b5",
"slotId": "mod_pistol_grip"
},
{
"_id": "68a3bb64b8031ab7fc0e62bd",
"_tpl": "5a0abb6e1526d8000a025282",
"parentId": "68a3bb64b8031ab7fc0e62b5",
"slotId": "mod_muzzle"
},
{
"_id": "68a3bb64b8031ab7fc0e62be",
"_tpl": "5e208b9842457a4a7a33d074",
"parentId": "68a3bb64b8031ab7fc0e62bd",
"slotId": "mod_muzzle"
},
{
"_id": "68a3bb64b8031ab7fc0e62bf",
"_tpl": "628a7b23b0f75035732dd565",
"parentId": "68a3bb64b8031ab7fc0e62b5",
"slotId": "mod_sight_rear"
},
{
"_id": "68a3bb64b8031ab7fc0e62c0",
"_tpl": "5e217ba4c1434648c13568cd",
"parentId": "68a3bb64b8031ab7fc0e62b5",
"slotId": "mod_stock"
},
{
"_id": "68a3bb64b8031ab7fc0e62c1",
"_tpl": "6272874a6c47bd74f92e2087",
"parentId": "68a3bb64b8031ab7fc0e62b5",
"slotId": "mod_magazine"
},
{
"_id": "68a3bb64b8031ab7fc0e62c2",
"_tpl": "5656d7c34bdc2d9d198b4587",
"parentId": "68a3bb64b8031ab7fc0e62c1",
"slotId": "cartridges",
"upd": {
"StackObjectsCount": "30"
}
},
{
"_id": "68a3bb64b8031ab7fc0e62c3",
"_tpl": "6130ca3fd92c473c77020dbd",
"parentId": "68a3bb64b8031ab7fc0e62b5",
"slotId": "mod_charge"
},
{
"_id": "68a3bb64b8031ab7fc0e62c4",
"_tpl": "5c61a40d2e2216001403158d",
"parentId": "68a3bb64b8031ab7fc0e62b5",
"slotId": "mod_mount_000"
},
{
"_id": "68a3bb64b8031ab7fc0e62c5",
"_tpl": "57ac965c24597706be5f975c",
"parentId": "68a3bb64b8031ab7fc0e62c4",
"slotId": "mod_scope"
},
{
"_id": "68a3bb64b8031ab7fc0e62c6",
"_tpl": "5d5d87f786f77427997cfaef",
"parentId": "68a3bb64b8031ab7fc0e628a",
"slotId": "main"
},
{
"_id": "68a3bb64b8031ab7fc0e62c7",
"_tpl": "6570e5100b57c03ec90b970a",
"parentId": "68a3bb64b8031ab7fc0e62c6",
"slotId": "Soft_armor_front"
},
{
"_id": "68a3bb64b8031ab7fc0e62c8",
"_tpl": "6570e479a6560e4ee50c2b02",
"parentId": "68a3bb64b8031ab7fc0e62c6",
"slotId": "Soft_armor_back"
},
{
"_id": "68a3bb64b8031ab7fc0e62c9",
"_tpl": "6570e5674cc0d2ab1e05edbb",
"parentId": "68a3bb64b8031ab7fc0e62c6",
"slotId": "Soft_armor_left"
},
{
"_id": "68a3bb64b8031ab7fc0e62ca",
"_tpl": "6570e59b0b57c03ec90b970e",
"parentId": "68a3bb64b8031ab7fc0e62c6",
"slotId": "soft_armor_right"
},
{
"_id": "68a3bb64b8031ab7fc0e62cb",
"_tpl": "656f9fa0498d1b7e3e071d98",
"parentId": "68a3bb64b8031ab7fc0e62c6",
"slotId": "Front_plate"
},
{
"_id": "68a3bb64b8031ab7fc0e62cc",
"_tpl": "656f9fa0498d1b7e3e071d98",
"parentId": "68a3bb64b8031ab7fc0e62c6",
"slotId": "Back_plate"
}
],
"sender": "System",
"messageText": "<ch>Soon</ch><cz>Soon</cz><en>Soon</en><fr>Soon</fr><ge>Soon</ge><hu>Soon</hu><it>Soon</it><jp>Soon</jp><kr>Soon</kr><pl>Soon</pl><po>Soon</po><sk>Soon</sk><es>Soon</es><es-mx>Soon</es-mx><tu>Soon</tu><ru>Soon</ru><ro>Soon</ro>"
}
}
}
@@ -1429,6 +1429,26 @@
"55818ae44bdc2dde698b456c",
"550aa4154bdc2dd8348b456b"
]
},
"67cad3226bf74131800752b7": {
"_type": "Unlocked equipment crate (BattlePass 0)",
"rewardCount": 6,
"foundInRaid": true,
"rewardTypePool": [
"55818ae44bdc2dde698b456c",
"550aa4154bdc2dd8348b456b",
"5448e54d4bdc2dcc718b4568",
"5448e5284bdc2dcb718b4567",
"5a341c4086f77401f2541505",
"55818b084bdc2d5b648b4571",
"5a2c3a9486f774688b05e574",
"644120aa86ffbe10ee032b6f",
"5645bcb74bdc2ded0b8b4578",
"5a341c4686f77469e155819e",
"5448eb774bdc2d0a728b4567",
"5c99f98d86f7745c314214b3",
"5c164d2286f774194c5e69fa"
]
}
},
"sealedAirdropContainer": {
@@ -190,15 +190,9 @@
"labyrinth": true
},
"containerTypesToNotRandomise": [
"5d6fd45b86f774317075ed43",
"5909d89086f77472591234a0",
"578f87b7245977356274f2cd",
"5909d76c86f77471e53d2adf",
"578f8782245977354405a1e3",
"5d6fe50986f77449d97f7463",
"578f879c24597735401e6bc6",
"578f8782245977354405a1e3",
"5d6fd13186f77424ad2a8c69"
"578f879c24597735401e6bc6"
],
"containerGroupMinSizeMultiplier": 1,
"containerGroupMaxSizeMultiplier": 1
@@ -17,5 +17,6 @@
"SecuredContainer": false
},
"questItems": true,
"specialSlotItems": false
"specialSlotItems": false,
"wipeOnRaidStart": false
}
@@ -167,9 +167,16 @@
],
"useDifficultyOverride": false,
"difficulty": "AsOnline",
"botRelativeLevelDeltaMax": 10,
"botRelativeLevelDeltaMin": 70,
"isUsec": 60,
"botRelativeLevelDelta": {
"min": 70,
"max": 10
},
"isUsec": 50,
"forceArmband": {
"enabled": true,
"usec": "5b3f3af486f774679e752c1f",
"bear": "5b3f3ade86f7746b6b790d8e"
},
"_pmcType": "Controls what bot brain can be chosen for each PMC bot type, the number is the weighting to be picked",
"pmcType": {
"pmcbear": {
@@ -337,15 +344,15 @@
"max": 64,
"backpack": {
"min": 5000,
"max": 0
"max": -1
},
"pocket": {
"min": 5000,
"max": 0
"max": -1
},
"vest": {
"min": 5000,
"max": 0
"max": -1
}
},
{
@@ -353,15 +360,15 @@
"max": 100,
"backpack": {
"min": 10000,
"max": 0
"max": -1
},
"pocket": {
"min": 10000,
"max": 0
"max": -1
},
"vest": {
"min": 10000,
"max": 0
"max": -1
}
}
],
@@ -550,6 +557,25 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "0,0,1,1,1,1,1,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "",
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1.0,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
@@ -569,6 +595,25 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "0,0,1,1,1,1,1,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "",
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1.0,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 50.0,
"BossDifficult": "normal",
@@ -780,6 +825,25 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "0,0,0,0,0,1,1,1,1,1,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "",
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1.0,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
@@ -799,6 +863,25 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "0,0,0,0,0,1,1,1,1,1,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "",
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1.0,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 75.0,
"BossDifficult": "normal",
@@ -880,12 +963,52 @@
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,1,1,2,2,2,2,3",
"BossEscortAmount": "1,1,1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "ZoneBrige,ZoneFactorySide,ZoneBlockPost,ZoneOldAZS,ZoneCustoms,ZoneWade,ZoneFactoryCenter",
"BossZone": "ZoneBrige,ZoneFactorySide,ZoneCustoms,ZoneWade,ZoneDormitory",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "ZoneFactorySide,ZoneBlockPost,ZoneOldAZS,ZoneFactoryCenter",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "ZoneBrige,ZoneFactorySide,ZoneCustoms,ZoneWade,ZoneDormitory",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
@@ -905,7 +1028,7 @@
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "ZoneBrige,ZoneFactorySide,ZoneBlockPost,ZoneOldAZS,ZoneCustoms,ZoneWade,ZoneFactoryCenter",
"BossZone": "ZoneFactorySide,ZoneBlockPost,ZoneOldAZS,ZoneFactoryCenter",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
@@ -1122,7 +1245,7 @@
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2,3",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
@@ -1142,7 +1265,47 @@
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2,3",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "ZoneHouse,ZoneScavBase2,ZoneBrokenVill,ZoneClearVill,ZoneRedHouse,ZoneRoad,ZoneMiniHouse",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "ZoneHouse,ZoneScavBase2,ZoneBrokenVill,ZoneClearVill,ZoneRedHouse,ZoneRoad,ZoneMiniHouse",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
@@ -1381,6 +1544,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "2,2,2,1,1,1,1,1",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "Zone_DestroyedHouse,Zone_Rocks,Zone_LongRoad,Zone_Bridge,Zone_Village,Zone_Chalet",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
@@ -1401,6 +1584,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "2,2,2,1,1,1,1,1",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "Zone_DestroyedHouse,Zone_Rocks,Zone_LongRoad,Zone_Bridge,Zone_Village,Zone_Chalet",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 50,
"BossDifficult": "normal",
@@ -1606,7 +1809,7 @@
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,1,2,2,2,2,3",
"BossEscortAmount": "1,1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
@@ -1626,7 +1829,47 @@
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,1,2,2,2,2,3",
"BossEscortAmount": "1,1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "ZoneCenter,ZoneCenterBot,ZoneOLI,ZoneIDEA,ZoneRoad,ZoneIDEAPark,ZoneGoshan,ZonePowerStation,ZoneTrucks,ZoneOLIPark",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "ZoneCenter,ZoneCenterBot,ZoneOLI,ZoneIDEA,ZoneRoad,ZoneIDEAPark,ZoneGoshan,ZonePowerStation,ZoneTrucks,ZoneOLIPark",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
@@ -1865,6 +2108,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "2,2,1,1,1,1,1,0",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "ZoneRailStrorage,ZonePTOR1,ZonePTOR2,ZoneBarrack",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
@@ -1885,6 +2148,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "2,2,1,1,1,1,1,0",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "ZoneRailStrorage,ZonePTOR1,ZonePTOR2,ZoneBarrack",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 25,
"BossDifficult": "normal",
@@ -2090,7 +2373,7 @@
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2,3",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
@@ -2110,7 +2393,47 @@
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2,3",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "ZoneTunnel,ZoneStartVillage,ZoneRailWays,ZonePassClose,ZonePassFar,ZoneForestSpawn",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "ZoneTunnel,ZoneStartVillage,ZoneRailWays,ZonePassClose,ZonePassFar,ZoneForestSpawn",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
@@ -2591,6 +2914,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "2,2,2,1,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "BotZoneFloor1,BotZoneFloor2,BotZoneBasement",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
@@ -2611,6 +2954,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "2,2,2,1,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "BotZoneFloor1,BotZoneFloor2,BotZoneBasement",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 50,
"BossDifficult": "normal",
@@ -2833,6 +3196,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "0,1,0",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
@@ -2853,6 +3236,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "0,1,0",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 25,
"BossDifficult": "normal",
@@ -3035,6 +3438,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcUSEC",
"BossName": "pmcUSEC",
"BossPlayer": false,
"BossZone": "",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
@@ -3055,6 +3478,26 @@
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 100,
"BossDifficult": "normal",
"BossEscortAmount": "1,1,1,1,2,2,2,2",
"BossEscortDifficult": "normal",
"BossEscortType": "pmcBEAR",
"BossName": "pmcBEAR",
"BossPlayer": false,
"BossZone": "",
"Delay": 0,
"IgnoreMaxBots": true,
"RandomTimeSpawn": false,
"SpawnMode": [
"pve"
],
"Supports": null,
"Time": -1,
"TriggerId": "",
"TriggerName": ""
},
{
"BossChance": 25,
"BossDifficult": "normal",
@@ -334,7 +334,8 @@
"TarkovStreets"
],
"Sandbox": [
"Sandbox"
"Sandbox",
"Sandbox_high"
]
},
"traderWhitelist": [
@@ -2595,7 +2596,8 @@
"TarkovStreets"
],
"Sandbox": [
"Sandbox"
"Sandbox",
"Sandbox_high"
]
},
"traderWhitelist": [
@@ -79,6 +79,14 @@
"min": 3000,
"max": 7500
}
},
{
"_name": "x",
"traderId": "6864e812f9fe664cb8b8e152",
"seconds": {
"min": 3000,
"max": 7500
}
}
],
"updateTimeDefault": 3600,
@@ -6,7 +6,6 @@
"Nickname": "BOTNAME",
"LowerNickname": "",
"Side": "Savage",
"Voice": "Scav_1",
"Level": 1,
"Experience": 0,
"RegistrationDate": 0,
@@ -22,11 +21,13 @@
"BotDifficulty": "normal",
"Experience": -1,
"StandingForKill": -0.04,
"AggressorBonus": 0.02
"AggressorBonus": 0.02,
"UseSimpleAnimator": false
},
"NicknameChangeDate": 0,
"NeedWipeOptions": [],
"lastCompletedWipe": null,
"lastWipeTimestamp": null,
"lastCompletedEvent": null,
"BannedState": false,
"BannedUntil": 0,
@@ -34,13 +35,15 @@
"SquadInviteRestriction": false,
"HasCoopExtension": false,
"isMigratedSkills": false,
"HasPveGame": false
"HasPveGame": false,
"PrestigeLevel": 0
},
"Customization": {
"Head": "5cc2e4d014c02e000d0115f8",
"Body": "5cc2e59214c02e000f16684e",
"Feet": "5cde9fb87d6c8b0474535da9",
"Hands": "5cc2e68f14c02e28b47de290"
"Hands": "5cc2e68f14c02e28b47de290",
"Voice": "67b877e7d2dc6a01d5059dd9"
},
"Health": {
"UpdateTime": 0,
@@ -88,5 +91,6 @@
"InsuredItems": [],
"Hideout": null,
"Bonuses": [],
"WishList": []
"WishList": [],
"Variables": {}
}
@@ -31,8 +31,8 @@
"5f68c4c217d579077152a252": 1
},
"voice": {
"Arena_Guard_1": 1,
"Arena_Guard_2": 1
"646e46ca286188c5480a1a37": 1,
"646e46d8f5438077af029fdb": 1
}
},
"chances": {
@@ -356,7 +356,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -379,7 +378,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -840,7 +838,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -863,7 +860,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1324,7 +1320,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1347,7 +1342,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1808,7 +1802,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1831,7 +1824,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
File diff suppressed because it is too large Load Diff
@@ -65,12 +65,12 @@
"675ac3957908e416a20861e6": 1
},
"voice": {
"Bear_1": 1,
"Bear_1_Eng": 1,
"Bear_2": 1,
"Bear_2_Eng": 1,
"Bear_3": 1,
"Bear_4": 1
"5fc1221a95572123ae7384a2": 1,
"6284d67f8e4092597733b7a4": 1,
"5fc50bddb4965a7a2f48c5af": 1,
"6284d6948e4092597733b7a5": 1,
"5fc614da00efd824885865c2": 1,
"6846990ed5d969efe3078408": 1
}
},
"chances": {
@@ -199,6 +199,30 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BOTTOM_COEF": 0.1,
"BOT_MOVE_IF_DELTA": 3.01,
"COEF_FROM_COVER": 0.45,
"COEF_IF_MOVE": 1,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"TIME_COEF_IF_MOVE": 1.1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -423,7 +447,7 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -449,7 +473,7 @@
"NO_GRASS_DIST": 8,
"NO_GREEN_DIST": 8,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -723,6 +747,30 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BOTTOM_COEF": 0.1,
"BOT_MOVE_IF_DELTA": 3.01,
"COEF_FROM_COVER": 0.45,
"COEF_IF_MOVE": 1,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"TIME_COEF_IF_MOVE": 1.1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -947,7 +995,7 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -974,7 +1022,6 @@
"NO_GRASS_DIST": 8,
"NO_GREEN_DIST": 8,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1247,6 +1294,30 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BOTTOM_COEF": 0.1,
"BOT_MOVE_IF_DELTA": 3.01,
"COEF_FROM_COVER": 0.45,
"COEF_IF_MOVE": 1,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"TIME_COEF_IF_MOVE": 1.1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -1471,7 +1542,7 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -1497,7 +1568,6 @@
"NO_GRASS_DIST": 8,
"NO_GREEN_DIST": 8,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1768,6 +1838,30 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"MAX_AIM_PRECICING": 2.0,
"RECALC_SQR_DIST": 0.48999998,
"COEF_FROM_COVER": 0.45,
"PANIC_COEF": 1.2,
"PANIC_ACCURATY_COEF": 1.2,
"HARD_AIM": 0.75,
"PANIC_TIME": 2.0,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"DAMAGE_TO_DISCARD_AIM_0_100": 86.0,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"BOTTOM_COEF": 0.1,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"DIST_TO_SHOOT_NO_OFFSET": 3.0,
"COEF_IF_MOVE": 1.0,
"TIME_COEF_IF_MOVE": 1.1,
"BOT_MOVE_IF_DELTA": 3.01,
"NEXT_SHOT_MISS_Y_OFFSET": 1.0,
"ANYTIME_LIGHT_WHEN_AIM_100": 10.0,
"MAX_AIM_TIME": 1.5,
"OFFSET_RECAL_ANYWAY_TIME": 1.0
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -1992,7 +2086,7 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -2018,7 +2112,6 @@
"NO_GRASS_DIST": 8,
"NO_GREEN_DIST": 8,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
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
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
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
@@ -48,12 +48,12 @@
"5f68c4c217d579077152a252": 34592
},
"voice": {
"Scav_1": 1,
"Scav_2": 1,
"Scav_3": 1,
"Scav_4": 1,
"Scav_5": 1,
"Scav_6": 1
"5fc613c80b735e7b024c76e2": 2578,
"5fc613e10b735e7b024c76e3": 2618,
"5fc614130b735e7b024c76e4": 2596,
"5fc6144b0b735e7b024c76e7": 2602,
"5fc614390b735e7b024c76e6": 2673,
"5fc614290b735e7b024c76e5": 2629
}
},
"chances": {
@@ -377,7 +377,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -401,7 +400,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -474,7 +473,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -876,7 +875,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -900,7 +898,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -973,7 +971,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1119,13 +1117,11 @@
"BETTER_PRECICING_COEF": 0.7,
"BOTTOM_COEF": 0.1,
"BOT_MOVE_IF_DELTA": 0.01,
"CAN_HARD_AIM": true,
"COEF_FROM_COVER": 0.65,
"COEF_IF_MOVE": 1,
"DAMAGE_PANIC_TIME": 15,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"DANGER_UP_POINT": 1.3,
"DEAD_BODY_LOOK_PERIOD": 8,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"DIST_TO_SHOOT_TO_CENTER": 3,
"FIRST_CONTACT_ADD_CHANCE_100": 80,
@@ -1374,7 +1370,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1397,7 +1392,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -1467,7 +1462,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1864,7 +1859,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -1888,7 +1882,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -1906,7 +1900,7 @@
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true,
"CAN_RECEIVE_PLAYER_REQUESTS_USEC": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": true,
"CAN_TAKE_ITEMS": true,
"CAN_THROW_REQUESTS": true,
@@ -1923,7 +1917,7 @@
"COVER_SELF_ALWAYS_IF_DAMAGED": false,
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_ENEMY_SAVAGE": true,
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
"DIST_TO_FOUND_SQRT": 400,
"DIST_TO_STOP_RUN_ENEMY": 15,
@@ -1964,7 +1958,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -48,12 +48,12 @@
"5f68c4c217d579077152a252": 34592
},
"voice": {
"Scav_1": 1,
"Scav_2": 1,
"Scav_3": 1,
"Scav_4": 1,
"Scav_5": 1,
"Scav_6": 1
"5fc613c80b735e7b024c76e2": 2578,
"5fc613e10b735e7b024c76e3": 2618,
"5fc614130b735e7b024c76e4": 2596,
"5fc6144b0b735e7b024c76e7": 2602,
"5fc614390b735e7b024c76e6": 2673,
"5fc614290b735e7b024c76e5": 2629
}
},
"chances": {
@@ -377,7 +377,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -402,7 +401,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -475,7 +474,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -878,7 +877,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -903,7 +901,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -976,7 +974,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1123,13 +1121,11 @@
"BETTER_PRECICING_COEF": 0.7,
"BOTTOM_COEF": 0.1,
"BOT_MOVE_IF_DELTA": 0.01,
"CAN_HARD_AIM": true,
"COEF_FROM_COVER": 0.65,
"COEF_IF_MOVE": 1,
"DAMAGE_PANIC_TIME": 15,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"DANGER_UP_POINT": 1.3,
"DEAD_BODY_LOOK_PERIOD": 8,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"DIST_TO_SHOOT_TO_CENTER": 3,
"FIRST_CONTACT_ADD_CHANCE_100": 80,
@@ -1378,7 +1374,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1402,7 +1397,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -1472,7 +1467,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1870,7 +1865,7 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -1895,7 +1890,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -1913,7 +1908,7 @@
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": true,
"CAN_RECEIVE_PLAYER_REQUESTS_USEC": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": true,
"CAN_TAKE_ITEMS": true,
"CAN_THROW_REQUESTS": true,
@@ -1930,7 +1925,7 @@
"COVER_SELF_ALWAYS_IF_DAMAGED": false,
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_ENEMY_SAVAGE": true,
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
"DIST_TO_FOUND_SQRT": 400,
"DIST_TO_STOP_RUN_ENEMY": 15,
@@ -1971,7 +1966,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
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
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
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
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
File diff suppressed because it is too large Load Diff
@@ -48,11 +48,12 @@
"6574aa9a1b144de18c0fba45": 7
},
"voice": {
"Bear_1": 5,
"Bear_1_Eng": 3,
"Bear_2": 5,
"Bear_2_Eng": 4,
"Bear_3": 4
"5fc1221a95572123ae7384a2": 1,
"6284d67f8e4092597733b7a4": 1,
"5fc50bddb4965a7a2f48c5af": 1,
"6284d6948e4092597733b7a5": 1,
"5fc614da00efd824885865c2": 1,
"6846990ed5d969efe3078408": 1
}
},
"chances": {
@@ -159,6 +160,41 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"AIMING_ON_WAY": 0,
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BAD_SHOOTS_MIN": 0,
"BAD_SHOOTS_MAX": 0,
"START_TIME_COEF": 0,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MAX_AIM_PRECICING": 2,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"BOT_MOVE_IF_DELTA": 3.01,
"PANIC_TIME": 2,
"RECALC_MUST_TIME_MIN": 0,
"RECALC_MUST_TIME_MAX": 0,
"RECLC_Y_DIST": 0,
"RECALC_SQR_DIST": 0.48999998,
"TIME_COEF_IF_MOVE": 1.1,
"PANIC_COEF": 1.2,
"COEF_FROM_COVER": 0.45,
"BOTTOM_COEF": 0.1,
"MAX_AIM_TIME": 1.5,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"PANIC_ACCURATY_COEF": 1.2,
"HARD_AIM": 0.75,
"COEF_IF_MOVE": 1,
"Y_TOP_OFFSET_COEF": 0,
"Y_BOTTOM_OFFSET_COEF": 0,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"BAD_SHOOTS_OFFSET": 0,
"BAD_SHOOTS_MAIN_COEF": 0,
"OFFSET_RECAL_ANYWAY_TIME": 1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -375,7 +411,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -399,7 +434,6 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -658,6 +692,41 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"AIMING_ON_WAY": 0,
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BAD_SHOOTS_MIN": 0,
"BAD_SHOOTS_MAX": 0,
"START_TIME_COEF": 0,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MAX_AIM_PRECICING": 2,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"BOT_MOVE_IF_DELTA": 3.01,
"PANIC_TIME": 2,
"RECALC_MUST_TIME_MIN": 0,
"RECALC_MUST_TIME_MAX": 0,
"RECLC_Y_DIST": 0,
"RECALC_SQR_DIST": 0.48999998,
"TIME_COEF_IF_MOVE": 1.1,
"PANIC_COEF": 1.2,
"COEF_FROM_COVER": 0.45,
"BOTTOM_COEF": 0.1,
"MAX_AIM_TIME": 1.5,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"PANIC_ACCURATY_COEF": 1.2,
"HARD_AIM": 0.75,
"COEF_IF_MOVE": 1,
"Y_TOP_OFFSET_COEF": 0,
"Y_BOTTOM_OFFSET_COEF": 0,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"BAD_SHOOTS_OFFSET": 0,
"BAD_SHOOTS_MAIN_COEF": 0,
"OFFSET_RECAL_ANYWAY_TIME": 1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -875,7 +944,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -899,7 +967,6 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1158,6 +1225,41 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"AIMING_ON_WAY": 0,
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BAD_SHOOTS_MIN": 0,
"BAD_SHOOTS_MAX": 0,
"START_TIME_COEF": 0,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MAX_AIM_PRECICING": 2,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"BOT_MOVE_IF_DELTA": 3.01,
"PANIC_TIME": 2,
"RECALC_MUST_TIME_MIN": 0,
"RECALC_MUST_TIME_MAX": 0,
"RECLC_Y_DIST": 0,
"RECALC_SQR_DIST": 0.48999998,
"TIME_COEF_IF_MOVE": 1.1,
"PANIC_COEF": 1.2,
"COEF_FROM_COVER": 0.45,
"BOTTOM_COEF": 0.1,
"MAX_AIM_TIME": 1.5,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"PANIC_ACCURATY_COEF": 1.2,
"HARD_AIM": 0.75,
"COEF_IF_MOVE": 1,
"Y_TOP_OFFSET_COEF": 0,
"Y_BOTTOM_OFFSET_COEF": 0,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"BAD_SHOOTS_OFFSET": 0,
"BAD_SHOOTS_MAIN_COEF": 0,
"OFFSET_RECAL_ANYWAY_TIME": 1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -1374,7 +1476,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1398,7 +1499,6 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1657,6 +1757,41 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"AIMING_ON_WAY": 0,
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BAD_SHOOTS_MIN": 0,
"BAD_SHOOTS_MAX": 0,
"START_TIME_COEF": 0,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MAX_AIM_PRECICING": 2,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"BOT_MOVE_IF_DELTA": 3.01,
"PANIC_TIME": 2,
"RECALC_MUST_TIME_MIN": 0,
"RECALC_MUST_TIME_MAX": 0,
"RECLC_Y_DIST": 0,
"RECALC_SQR_DIST": 0.48999998,
"TIME_COEF_IF_MOVE": 1.1,
"PANIC_COEF": 1.2,
"COEF_FROM_COVER": 0.45,
"BOTTOM_COEF": 0.1,
"MAX_AIM_TIME": 1.5,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"PANIC_ACCURATY_COEF": 1.2,
"HARD_AIM": 0.75,
"COEF_IF_MOVE": 1,
"Y_TOP_OFFSET_COEF": 0,
"Y_BOTTOM_OFFSET_COEF": 0,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"BAD_SHOOTS_OFFSET": 0,
"BAD_SHOOTS_MAIN_COEF": 0,
"OFFSET_RECAL_ANYWAY_TIME": 1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -1874,7 +2009,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1898,7 +2032,6 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -2361,9 +2494,10 @@
"5c0d591486f7744c505b416f": 13
},
"Caliber545x39": {
"56dff061d2720bb5668b4567": 3,
"56dff2ced2720bb4668b4567": 5,
"56dff3afd2720bba668b4567": 33
"56dfef82d2720bbd668b4567": 11,
"56dff026d2720bb8668b4567": 3,
"56dff061d2720bb5668b4567": 11,
"56dff3afd2720bba668b4567": 84
},
"Caliber762x39": {
"5656d7c34bdc2d9d198b4587": 83,
@@ -2450,7 +2584,7 @@
"5ab8f85d86f7745cd93a1cf5": 10,
"5b4325355acfc40019478126": 4,
"5b432f3d5acfc4704b4a1dfb": 16,
"62a09dd4621468534a797ac7": 3
"675ac888803644528007b3f6": 3
},
"FirstPrimaryWeapon": {
"54491c4f4bdc2db1078b4568": 5,
@@ -2651,6 +2785,61 @@
"560d5e524bdc2d25448b4571"
]
},
"544a5caa4bdc2d1a388b4568": {
"Back_plate": [
"656f9fa0498d1b7e3e071d98"
],
"Front_plate": [
"656f9fa0498d1b7e3e071d98"
],
"Groin": [
"6570e90b3a5689d85f08db97"
],
"Soft_armor_back": [
"6570e87c23c1f638ef0b0ee2"
],
"Soft_armor_front": [
"6570e83223c1f638ef0b0ede"
]
},
"545cdb794bdc2d3a198b456a": {
"Back_plate": [
"64afc71497cf3a403c01ff38"
],
"Collar": [
"6575ce6f16c2762fba005806"
],
"Front_plate": [
"64afc71497cf3a403c01ff38"
],
"Groin": [
"6575ce8bdc9932aed601c61e"
],
"Left_side_plate": [
"64afd81707e2cf40e903a316"
],
"Right_side_plate": [
"64afd81707e2cf40e903a316"
],
"Shoulder_l": [
"6575ce9db15fef3dd4051628"
],
"Shoulder_r": [
"6575cea8b15fef3dd405162c"
],
"Soft_armor_back": [
"6575ce45dc9932aed601c616"
],
"Soft_armor_front": [
"6575ce3716c2762fba0057fd"
],
"Soft_armor_left": [
"6575ce5016c2762fba005802"
],
"soft_armor_right": [
"6575ce5befc786cd9101a671"
]
},
"55801eed4bdc2d89578b4588": {
"mod_magazine": [
"559ba5b34bdc2d1f1a8b4582"
@@ -2676,6 +2865,9 @@
"55d45f484bdc2d972f8b456d": {
"mod_foregrip": [
"588226d124597767ad33f787"
],
"mod_tactical_000": [
"560d657b4bdc2da74d8b4572"
]
},
"55d48a634bdc2d8b2f8b456a": {
@@ -2744,8 +2936,9 @@
},
"5649af884bdc2d1b2b8b4589": {
"mod_scope": [
"570fd6c2d2720bc6458b457f",
"5c0505e00db834001b735073"
"5c0505e00db834001b735073",
"5c0a2cec0db834001b7ce47d",
"570fd6c2d2720bc6458b457f"
]
},
"5649b1c04bdc2d16268b457c": {
@@ -2851,7 +3044,8 @@
"57c44dd02459772d2e0ae249"
],
"mod_pistol_grip": [
"57c44fa82459772d2d75e415"
"57c44fa82459772d2d75e415",
"5a69a2ed8dc32e000d46d1f1"
],
"mod_reciever": [
"57c44f4f2459772d2c627113"
@@ -3140,6 +3334,11 @@
"5aba637ad8ce87001773e17f"
]
},
"5a69a2ed8dc32e000d46d1f1": {
"mod_stock_000": [
"5d135e83d7ad1a21b83f42d8"
]
},
"5a6f5e048dc32e00094b97da": {
"mod_sight_front": [
"5a6f58f68dc32e000a311390"
@@ -3170,6 +3369,12 @@
"657baaf0b7e9ca9a02045c02"
]
},
"5a9d6d13a2750c00164f6b03": {
"mod_foregrip": [
"588226d124597767ad33f787",
"588226e62459776e3e094af7"
]
},
"5aa7cfc0e5b5b00015693143": {
"Helmet_back": [
"657bab6ec6f689d3a205b85f"
@@ -4139,7 +4344,8 @@
},
"655cb6b5d680a544f30607fa": {
"mod_scope": [
"58491f3324597764bc48fa02"
"58491f3324597764bc48fa02",
"558022b54bdc2dac148b458d"
]
},
"65709d2d21b9f815e208ff95": {
@@ -4160,6 +4366,26 @@
"Helmet_top": [
"657fa0fcd4caf976440afe3e"
]
},
"65ae4f57e343f0acc00824da": {
"mod_foregrip": [
"5c1bc7752e221602b1779b34"
],
"mod_tactical": [
"5d2369418abbc306c62e0c80",
"6267c6396b642f77f56f5c1c"
]
},
"6745895717824b1ec20570a6": {
"Helmet_back": [
"657bab6ec6f689d3a205b85f"
],
"Helmet_ears": [
"657babc6f58ba5a6250107a2"
],
"Helmet_top": [
"657baaf0b7e9ca9a02045c02"
]
}
}
},
File diff suppressed because it is too large Load Diff
@@ -51,11 +51,13 @@
"6574aabee0423b9ebe0c79cf": 3
},
"voice": {
"Usec_1": 14,
"Usec_2": 9,
"Usec_3": 17,
"Usec_4": 13,
"Usec_5": 17
"5fc1223595572123ae7384a3": 1,
"5fc614f40b735e7b024c76e9": 1,
"5fc615110b735e7b024c76ea": 1,
"6284d6a28e4092597733b7a6": 1,
"6284d6ab8e4092597733b7a7": 1,
"668677330ae95580780867c6": 1,
"684696e8199c6a77dc0f9bc8": 1
}
},
"chances": {
@@ -165,6 +167,41 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"AIMING_ON_WAY": 0,
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BAD_SHOOTS_MIN": 0,
"BAD_SHOOTS_MAX": 0,
"START_TIME_COEF": 0,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MAX_AIM_PRECICING": 2,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"BOT_MOVE_IF_DELTA": 3.01,
"PANIC_TIME": 2,
"RECALC_MUST_TIME_MIN": 0,
"RECALC_MUST_TIME_MAX": 0,
"RECLC_Y_DIST": 0,
"RECALC_SQR_DIST": 0.48999998,
"TIME_COEF_IF_MOVE": 1.1,
"PANIC_COEF": 1.2,
"COEF_FROM_COVER": 0.45,
"BOTTOM_COEF": 0.1,
"MAX_AIM_TIME": 1.5,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"PANIC_ACCURATY_COEF": 1.2,
"HARD_AIM": 0.75,
"COEF_IF_MOVE": 1,
"Y_TOP_OFFSET_COEF": 0,
"Y_BOTTOM_OFFSET_COEF": 0,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"BAD_SHOOTS_OFFSET": 0,
"BAD_SHOOTS_MAIN_COEF": 0,
"OFFSET_RECAL_ANYWAY_TIME": 1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -381,7 +418,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -405,7 +441,7 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -664,6 +700,41 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"AIMING_ON_WAY": 0,
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BAD_SHOOTS_MIN": 0,
"BAD_SHOOTS_MAX": 0,
"START_TIME_COEF": 0,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MAX_AIM_PRECICING": 2,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"BOT_MOVE_IF_DELTA": 3.01,
"PANIC_TIME": 2,
"RECALC_MUST_TIME_MIN": 0,
"RECALC_MUST_TIME_MAX": 0,
"RECLC_Y_DIST": 0,
"RECALC_SQR_DIST": 0.48999998,
"TIME_COEF_IF_MOVE": 1.1,
"PANIC_COEF": 1.2,
"COEF_FROM_COVER": 0.45,
"BOTTOM_COEF": 0.1,
"MAX_AIM_TIME": 1.5,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"PANIC_ACCURATY_COEF": 1.2,
"HARD_AIM": 0.75,
"COEF_IF_MOVE": 1,
"Y_TOP_OFFSET_COEF": 0,
"Y_BOTTOM_OFFSET_COEF": 0,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"BAD_SHOOTS_OFFSET": 0,
"BAD_SHOOTS_MAIN_COEF": 0,
"OFFSET_RECAL_ANYWAY_TIME": 1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -881,7 +952,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -905,7 +975,7 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1161,6 +1231,41 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"AIMING_ON_WAY": 0,
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BAD_SHOOTS_MIN": 0,
"BAD_SHOOTS_MAX": 0,
"START_TIME_COEF": 0,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MAX_AIM_PRECICING": 2,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"BOT_MOVE_IF_DELTA": 3.01,
"PANIC_TIME": 2,
"RECALC_MUST_TIME_MIN": 0,
"RECALC_MUST_TIME_MAX": 0,
"RECLC_Y_DIST": 0,
"RECALC_SQR_DIST": 0.48999998,
"TIME_COEF_IF_MOVE": 1.1,
"PANIC_COEF": 1.2,
"COEF_FROM_COVER": 0.45,
"BOTTOM_COEF": 0.1,
"MAX_AIM_TIME": 1.5,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"PANIC_ACCURATY_COEF": 1.2,
"HARD_AIM": 0.75,
"COEF_IF_MOVE": 1,
"Y_TOP_OFFSET_COEF": 0,
"Y_BOTTOM_OFFSET_COEF": 0,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"BAD_SHOOTS_OFFSET": 0,
"BAD_SHOOTS_MAIN_COEF": 0,
"OFFSET_RECAL_ANYWAY_TIME": 1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -1377,7 +1482,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1401,7 +1505,7 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1660,6 +1764,41 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"AIMING_ON_WAY": 0,
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BAD_SHOOTS_MIN": 0,
"BAD_SHOOTS_MAX": 0,
"START_TIME_COEF": 0,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MAX_AIM_PRECICING": 2,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"BOT_MOVE_IF_DELTA": 3.01,
"PANIC_TIME": 2,
"RECALC_MUST_TIME_MIN": 0,
"RECALC_MUST_TIME_MAX": 0,
"RECLC_Y_DIST": 0,
"RECALC_SQR_DIST": 0.48999998,
"TIME_COEF_IF_MOVE": 1.1,
"PANIC_COEF": 1.2,
"COEF_FROM_COVER": 0.45,
"BOTTOM_COEF": 0.1,
"MAX_AIM_TIME": 1.5,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"PANIC_ACCURATY_COEF": 1.2,
"HARD_AIM": 0.75,
"COEF_IF_MOVE": 1,
"Y_TOP_OFFSET_COEF": 0,
"Y_BOTTOM_OFFSET_COEF": 0,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"BAD_SHOOTS_OFFSET": 0,
"BAD_SHOOTS_MAIN_COEF": 0,
"OFFSET_RECAL_ANYWAY_TIME": 1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -1877,7 +2016,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1901,7 +2039,7 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -13,7 +13,7 @@
"5cc2e4d014c02e000d0115f8": 1
},
"voice": {
"Scav_5": 1
"5fc614390b735e7b024c76e6": 1
}
},
"chances": {
@@ -193,7 +193,6 @@
"HearingSense": 3.95,
"PistolFireDistancePref": 35,
"RifleFireDistancePref": 100,
"START_DIST_TO_COV": 50,
"ScatteringClosePerMeter": 0.1,
"ScatteringPerMeter": 0.1,
"ShotgunFireDistancePref": 50,
@@ -334,7 +333,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -357,7 +355,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 95,
@@ -693,7 +691,6 @@
"HearingSense": 3.95,
"PistolFireDistancePref": 35,
"RifleFireDistancePref": 100,
"START_DIST_TO_COV": 50,
"ScatteringClosePerMeter": 0.1,
"ScatteringPerMeter": 0.1,
"ShotgunFireDistancePref": 50,
@@ -834,7 +831,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -857,7 +853,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 95,
@@ -1193,7 +1189,6 @@
"HearingSense": 3.95,
"PistolFireDistancePref": 35,
"RifleFireDistancePref": 100,
"START_DIST_TO_COV": 50,
"ScatteringClosePerMeter": 0.1,
"ScatteringPerMeter": 0.1,
"ShotgunFireDistancePref": 50,
@@ -1334,7 +1329,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1357,7 +1351,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 95,
@@ -1693,7 +1687,6 @@
"HearingSense": 3.95,
"PistolFireDistancePref": 35,
"RifleFireDistancePref": 100,
"START_DIST_TO_COV": 50,
"ScatteringClosePerMeter": 0.1,
"ScatteringPerMeter": 0.1,
"ShotgunFireDistancePref": 50,
@@ -1834,7 +1827,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1857,7 +1849,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 95,
@@ -15,7 +15,7 @@
"5fb52a537b5d1342ee24bd57": 2
},
"voice": {
"SectantWarrior": 1
"67b877e7d2dc6a01d5059dd9": 1
}
},
"chances": {
@@ -326,7 +326,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -349,7 +348,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 95,
"WAIT_NEW_SENSOR": 2.1,
@@ -693,7 +692,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -787,7 +785,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -817,7 +815,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -842,7 +839,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -915,7 +912,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1197,7 +1194,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -1291,7 +1287,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -1321,7 +1317,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1346,7 +1341,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -1419,7 +1413,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1701,7 +1695,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -1795,7 +1788,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -1825,7 +1818,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1850,7 +1842,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -1923,7 +1915,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -15,7 +15,7 @@
"5fb52a537b5d1342ee24bd57": 2
},
"voice": {
"SectantWarrior": 1
"67b877e7d2dc6a01d5059dd9": 1
}
},
"chances": {
@@ -216,7 +216,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -310,7 +309,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -340,7 +339,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -365,7 +363,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -438,7 +435,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -720,7 +717,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -814,7 +810,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -844,7 +840,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -869,7 +864,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -942,7 +936,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1224,7 +1218,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -1318,7 +1311,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -1348,7 +1341,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1373,7 +1365,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -1446,7 +1437,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1728,7 +1719,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -1822,7 +1812,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -1852,7 +1842,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1877,7 +1866,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -1950,7 +1939,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
File diff suppressed because it is too large Load Diff
@@ -15,7 +15,7 @@
"5fb52a537b5d1342ee24bd57": 2
},
"voice": {
"SectantWarrior": 1
"67b877e7d2dc6a01d5059dd9": 1
}
},
"chances": {
@@ -216,7 +216,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -310,7 +309,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -340,7 +339,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -365,7 +363,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -438,7 +435,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -720,7 +717,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -814,7 +810,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -844,7 +840,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -869,7 +864,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -942,7 +936,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1224,7 +1218,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -1318,7 +1311,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -1348,7 +1341,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1373,7 +1365,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -1446,7 +1438,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1728,7 +1720,6 @@
"HIDE_TO_COVER_TIME": 1.5,
"HITS_TO_LEAVE_COVER": 1,
"HITS_TO_LEAVE_COVER_UNKNOWN": 1,
"LOOK_LAST_ENEMY_POS_HOLDING": 1.5,
"LOOK_LAST_ENEMY_POS_LOOKAROUND": 45,
"LOOK_LAST_ENEMY_POS_MOVING": 1.5,
"LOOK_TO_HIT_POINT_IF_LAST_ENEMY": 3,
@@ -1822,7 +1813,7 @@
},
"Lay": {
"ATTACK_LAY_CHANCE": 25,
"CHECK_CLOSEST_FRIEND": true,
"CHECK_SHOOT_WHEN_LAYING": false,
"CLEAR_POINTS_OF_SCARE_SEC": 20,
"DAMAGE_TIME_TO_GETUP": 3,
@@ -1852,7 +1843,6 @@
"Look": {
"ANGLE_FOR_GETUP": 178,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1877,7 +1867,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"SELF_NIGHTVISION": true,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
@@ -1950,7 +1939,7 @@
"STANDART_AMBUSH_DIST": 200,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": true,
"TIME_LEAVE_MAP": 7,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
File diff suppressed because it is too large Load Diff
@@ -31,11 +31,12 @@
"5f68c4c217d579077152a252": 3
},
"voice": {
"Scav_1": 2,
"Scav_2": 2,
"Scav_4": 2,
"Scav_5": 3,
"Scav_6": 1
"5fc613c80b735e7b024c76e2": 1,
"5fc613e10b735e7b024c76e3": 1,
"5fc614130b735e7b024c76e4": 1,
"5fc6144b0b735e7b024c76e7": 1,
"5fc614390b735e7b024c76e6": 1,
"5fc614290b735e7b024c76e5": 1
}
},
"chances": {
@@ -113,6 +114,32 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -1,
"TIME_COEF_IF_MOVE": 1.5,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": -1,
"BOTTOM_COEF": 0.25,
"BOT_MOVE_IF_DELTA": 0.01,
"COEF_FROM_COVER": 0.75,
"COEF_IF_MOVE": 1.6,
"DAMAGE_TO_DISCARD_AIM_0_100": 96,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.85,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 3.1,
"MIN_TIME_DISCARD_AIM_SEC": 2.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.7,
"SCATTERING_DIST_MODIF_CLOSE": 0.82,
"TIME_COEF_IF_MOVE": 1.5,
"Y_BOTTOM_OFFSET_COEF": 0.015,
"Y_TOP_OFFSET_COEF": 0.001
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.65,
"XZ_COEF_STATIONARY_GRENADE": 0.8,
@@ -335,7 +362,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -362,7 +388,7 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -380,7 +406,7 @@
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false,
"CAN_RECEIVE_PLAYER_REQUESTS_USEC": false,
"CAN_RECIVE_PLAYER_REQUESTS": false,
"CAN_STAND_BY": true,
"CAN_TAKE_ITEMS": true,
"CAN_TALK": false,
@@ -396,7 +422,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_SAVAGE": true,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -448,7 +474,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": false,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -550,6 +576,7 @@
"Shoot": {
"AUTOMATIC_FIRE_SCATTERING_COEF": 1.5,
"BASE_AUTOMATIC_TIME": 0.1,
"BLOCK_STEERING": true,
"CAN_SHOOTS_TIME_TO_AMBUSH": 333,
"CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76,
"CHANCE_TO_CHANGE_WEAPON": 0,
@@ -578,6 +605,7 @@
"SHOOT_FROM_COVER": 4,
"SUPPRESS_BY_SHOOT_TIME": 6,
"SUPPRESS_TRIGGERS_DOWN": 3,
"USE_BTR_CANSHOOT": true,
"VALIDATE_MALFUNCTION_CHANCE": 0,
"WAIT_NEXT_SINGLE_SHOT": 0.3,
"WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3,
@@ -630,6 +658,32 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -1,
"TIME_COEF_IF_MOVE": 1.5,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": -1,
"BOTTOM_COEF": 0.25,
"BOT_MOVE_IF_DELTA": 0.01,
"COEF_FROM_COVER": 0.75,
"COEF_IF_MOVE": 1.6,
"DAMAGE_TO_DISCARD_AIM_0_100": 96,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.85,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 3.1,
"MIN_TIME_DISCARD_AIM_SEC": 2.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.7,
"SCATTERING_DIST_MODIF_CLOSE": 0.82,
"TIME_COEF_IF_MOVE": 1.5,
"Y_BOTTOM_OFFSET_COEF": 0.015,
"Y_TOP_OFFSET_COEF": 0.001
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.65,
"XZ_COEF_STATIONARY_GRENADE": 0.8,
@@ -852,7 +906,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -879,7 +932,7 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -897,7 +950,7 @@
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false,
"CAN_RECEIVE_PLAYER_REQUESTS_USEC": false,
"CAN_RECIVE_PLAYER_REQUESTS": false,
"CAN_STAND_BY": true,
"CAN_TAKE_ITEMS": true,
"CAN_TALK": false,
@@ -913,7 +966,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_SAVAGE": true,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -965,7 +1018,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": false,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1067,6 +1120,7 @@
"Shoot": {
"AUTOMATIC_FIRE_SCATTERING_COEF": 1.5,
"BASE_AUTOMATIC_TIME": 0.1,
"BLOCK_STEERING": true,
"CAN_SHOOTS_TIME_TO_AMBUSH": 333,
"CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76,
"CHANCE_TO_CHANGE_WEAPON": 0,
@@ -1095,6 +1149,7 @@
"SHOOT_FROM_COVER": 4,
"SUPPRESS_BY_SHOOT_TIME": 6,
"SUPPRESS_TRIGGERS_DOWN": 3,
"USE_BTR_CANSHOOT": true,
"VALIDATE_MALFUNCTION_CHANCE": 0,
"WAIT_NEXT_SINGLE_SHOT": 0.3,
"WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3,
@@ -1147,6 +1202,32 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -1,
"TIME_COEF_IF_MOVE": 1.5,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": -1,
"BOTTOM_COEF": 0.25,
"BOT_MOVE_IF_DELTA": 0.01,
"COEF_FROM_COVER": 0.75,
"COEF_IF_MOVE": 1.6,
"DAMAGE_TO_DISCARD_AIM_0_100": 96,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.85,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 3.1,
"MIN_TIME_DISCARD_AIM_SEC": 2.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.7,
"SCATTERING_DIST_MODIF_CLOSE": 0.82,
"TIME_COEF_IF_MOVE": 1.5,
"Y_BOTTOM_OFFSET_COEF": 0.015,
"Y_TOP_OFFSET_COEF": 0.001
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.65,
"XZ_COEF_STATIONARY_GRENADE": 0.8,
@@ -1369,7 +1450,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -1396,7 +1476,6 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -1414,7 +1493,7 @@
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false,
"CAN_RECEIVE_PLAYER_REQUESTS_USEC": false,
"CAN_RECIVE_PLAYER_REQUESTS": false,
"CAN_STAND_BY": true,
"CAN_TAKE_ITEMS": true,
"CAN_TALK": false,
@@ -1430,7 +1509,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_SAVAGE": true,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -1482,7 +1561,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": false,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -1584,6 +1663,7 @@
"Shoot": {
"AUTOMATIC_FIRE_SCATTERING_COEF": 1.5,
"BASE_AUTOMATIC_TIME": 0.1,
"BLOCK_STEERING": true,
"CAN_SHOOTS_TIME_TO_AMBUSH": 333,
"CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76,
"CHANCE_TO_CHANGE_WEAPON": 0,
@@ -1612,6 +1692,7 @@
"SHOOT_FROM_COVER": 4,
"SUPPRESS_BY_SHOOT_TIME": 6,
"SUPPRESS_TRIGGERS_DOWN": 3,
"USE_BTR_CANSHOOT": true,
"VALIDATE_MALFUNCTION_CHANCE": 0,
"WAIT_NEXT_SINGLE_SHOT": 0.3,
"WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3,
@@ -1664,6 +1745,32 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -1,
"TIME_COEF_IF_MOVE": 1.5,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": -1,
"BOTTOM_COEF": 0.25,
"BOT_MOVE_IF_DELTA": 0.01,
"COEF_FROM_COVER": 0.75,
"COEF_IF_MOVE": 1.6,
"DAMAGE_TO_DISCARD_AIM_0_100": 96,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.85,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 3.1,
"MIN_TIME_DISCARD_AIM_SEC": 2.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.7,
"SCATTERING_DIST_MODIF_CLOSE": 0.82,
"TIME_COEF_IF_MOVE": 1.5,
"Y_BOTTOM_OFFSET_COEF": 0.015,
"Y_TOP_OFFSET_COEF": 0.001
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.65,
"XZ_COEF_STATIONARY_GRENADE": 0.8,
@@ -1886,7 +1993,6 @@
"Look": {
"ANGLE_FOR_GETUP": 30,
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": false,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -1913,7 +2019,7 @@
"NO_GRASS_DIST": 5,
"NO_GREEN_DIST": 5,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 43,
"WAIT_NEW_SENSOR": 2.1,
@@ -1931,7 +2037,7 @@
"CAN_RECEIVE_PLAYER_REQUESTS_BEAR": false,
"CAN_RECEIVE_PLAYER_REQUESTS_SAVAGE": false,
"CAN_RECEIVE_PLAYER_REQUESTS_USEC": false,
"CAN_RECIVE_PLAYER_REQUESTS": false,
"CAN_STAND_BY": true,
"CAN_TAKE_ITEMS": true,
"CAN_TALK": false,
@@ -1947,7 +2053,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_SAVAGE": true,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -1999,7 +2105,7 @@
"SURGE_KIT_ONLY_SAFE_CONTAINER": false,
"SUSPETION_POINT_CHANCE_ADD100": 0,
"TALK_WITH_QUERY": false,
"TIME_LEAVE_MAP": 23,
"TIME_TO_FIND_ENEMY": 22,
"TIME_TO_FORGOR_ABOUT_ENEMY_SEC": 52,
"TIME_TO_RUN_TO_COVER_CAUSE_SHOOT_SEC": 15,
@@ -2101,6 +2207,7 @@
"Shoot": {
"AUTOMATIC_FIRE_SCATTERING_COEF": 1.5,
"BASE_AUTOMATIC_TIME": 0.1,
"BLOCK_STEERING": true,
"CAN_SHOOTS_TIME_TO_AMBUSH": 333,
"CHANCE_TO_CHANGE_TO_AUTOMATIC_FIRE_100": 76,
"CHANCE_TO_CHANGE_WEAPON": 0,
@@ -2129,6 +2236,7 @@
"SHOOT_FROM_COVER": 4,
"SUPPRESS_BY_SHOOT_TIME": 6,
"SUPPRESS_TRIGGERS_DOWN": 3,
"USE_BTR_CANSHOOT": true,
"VALIDATE_MALFUNCTION_CHANCE": 0,
"WAIT_NEXT_SINGLE_SHOT": 0.3,
"WAIT_NEXT_SINGLE_SHOT_LONG_MAX": 3.3,
@@ -2361,11 +2469,11 @@
"Backpack": {},
"Pockets": {},
"SecuredContainer": {
"5e023d34e8a400319a28ed44": 100
"5e023d34e8a400319a28ed44": 1
},
"SpecialLoot": {},
"TacticalVest": {
"65785979bec02a3fe82c181e": 20
"65785979bec02a3fe82c181e": 1
}
},
"mods": {
File diff suppressed because it is too large Load Diff
@@ -18,18 +18,18 @@
"5cde9ff17d6c8b0474535daa": 1
},
"voice": {
"Bear_1": 193,
"Bear_2": 183,
"Bear_3": 189,
"Scav_1": 121,
"Scav_2": 118,
"Scav_3": 141,
"Scav_4": 140,
"Scav_5": 123,
"Scav_6": 124,
"Usec_1": 173,
"Usec_2": 181,
"Usec_3": 171
"5fc1221a95572123ae7384a2": 1,
"5fc50bddb4965a7a2f48c5af": 1,
"6284d6948e4092597733b7a5": 1,
"5fc613c80b735e7b024c76e2": 1,
"5fc613e10b735e7b024c76e3": 1,
"5fc614130b735e7b024c76e4": 1,
"5fc6144b0b735e7b024c76e7": 1,
"5fc614390b735e7b024c76e6": 1,
"5fc614290b735e7b024c76e5": 1,
"5fc1223595572123ae7384a3": 1,
"5fc614f40b735e7b024c76e9": 1,
"5fc615110b735e7b024c76ea": 1
}
},
"chances": {
@@ -353,7 +353,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -376,7 +375,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -392,7 +390,7 @@
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": false,
"CAN_TAKE_ANY_ITEM": true,
"CAN_TAKE_ITEMS": true,
@@ -408,9 +406,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_BEAR": false,
"DEFAULT_ENEMY_SAVAGE": false,
"DEFAULT_ENEMY_USEC": false,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -836,7 +832,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -859,7 +854,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -875,7 +869,7 @@
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": false,
"CAN_TAKE_ANY_ITEM": true,
"CAN_TAKE_ITEMS": true,
@@ -891,9 +885,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_BEAR": false,
"DEFAULT_ENEMY_SAVAGE": false,
"DEFAULT_ENEMY_USEC": false,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -1319,7 +1311,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1342,7 +1333,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1358,7 +1349,7 @@
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": false,
"CAN_TAKE_ANY_ITEM": true,
"CAN_TAKE_ITEMS": true,
@@ -1374,9 +1365,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_BEAR": false,
"DEFAULT_ENEMY_SAVAGE": false,
"DEFAULT_ENEMY_USEC": false,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -1802,7 +1791,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1825,7 +1813,7 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1841,7 +1829,7 @@
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": false,
"CAN_TAKE_ANY_ITEM": true,
"CAN_TAKE_ITEMS": true,
@@ -1857,9 +1845,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_BEAR": false,
"DEFAULT_ENEMY_SAVAGE": false,
"DEFAULT_ENEMY_USEC": false,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -18,18 +18,18 @@
"5cde9ff17d6c8b0474535daa": 1
},
"voice": {
"Bear_1": 193,
"Bear_2": 183,
"Bear_3": 189,
"Scav_1": 121,
"Scav_2": 118,
"Scav_3": 141,
"Scav_4": 140,
"Scav_5": 123,
"Scav_6": 124,
"Usec_1": 173,
"Usec_2": 181,
"Usec_3": 171
"5fc1221a95572123ae7384a2": 1,
"5fc50bddb4965a7a2f48c5af": 1,
"6284d6948e4092597733b7a5": 1,
"5fc613c80b735e7b024c76e2": 1,
"5fc613e10b735e7b024c76e3": 1,
"5fc614130b735e7b024c76e4": 1,
"5fc6144b0b735e7b024c76e7": 1,
"5fc614390b735e7b024c76e6": 1,
"5fc614290b735e7b024c76e5": 1,
"5fc1223595572123ae7384a3": 1,
"5fc614f40b735e7b024c76e9": 1,
"5fc615110b735e7b024c76ea": 1
}
},
"chances": {
@@ -353,7 +353,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -376,7 +375,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -392,7 +390,7 @@
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": false,
"CAN_TAKE_ANY_ITEM": true,
"CAN_TAKE_ITEMS": true,
@@ -408,9 +406,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_BEAR": false,
"DEFAULT_ENEMY_SAVAGE": false,
"DEFAULT_ENEMY_USEC": false,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -836,7 +832,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -859,7 +854,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -875,7 +869,7 @@
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": false,
"CAN_TAKE_ANY_ITEM": true,
"CAN_TAKE_ITEMS": true,
@@ -891,9 +885,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_BEAR": false,
"DEFAULT_ENEMY_SAVAGE": false,
"DEFAULT_ENEMY_USEC": false,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -1319,7 +1311,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1342,7 +1333,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1358,7 +1348,7 @@
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": false,
"CAN_TAKE_ANY_ITEM": true,
"CAN_TAKE_ITEMS": true,
@@ -1374,9 +1364,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_BEAR": false,
"DEFAULT_ENEMY_SAVAGE": false,
"DEFAULT_ENEMY_USEC": false,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
@@ -1802,7 +1790,6 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
"DIST_CHECK_WALL": 20,
@@ -1825,7 +1812,6 @@
"MIN_LOOK_AROUD_TIME": 20,
"MiddleDeltaTimeSec": 1,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -1841,7 +1827,7 @@
"BULLET_FEEL_CLOSE_SDIST": 1,
"BULLET_FEEL_DIST": 360,
"CAN_PANIC_IS_PROTECT": false,
"CAN_RECIVE_PLAYER_REQUESTS": true,
"CAN_STAND_BY": false,
"CAN_TAKE_ANY_ITEM": true,
"CAN_TAKE_ITEMS": true,
@@ -1857,9 +1843,7 @@
"DAMAGE_REDUCTION_TIME_SEC": 20,
"DANGER_POINT_CHOOSE_COEF": 1,
"DEFAULT_BEAR_BEHAVIOUR": "Neutral",
"DEFAULT_ENEMY_BEAR": false,
"DEFAULT_ENEMY_SAVAGE": false,
"DEFAULT_ENEMY_USEC": false,
"DEFAULT_SAVAGE_BEHAVIOUR": "Neutral",
"DEFAULT_USEC_BEHAVIOUR": "Neutral",
"DIST_TO_ENEMY_YO_CAN_HEAL": 30,
File diff suppressed because it is too large Load Diff
@@ -55,13 +55,13 @@
"6764194e4dec6d46f106f9f6": 1
},
"voice": {
"Usec_1": 1,
"Usec_2": 1,
"Usec_3": 1,
"Usec_4": 1,
"Usec_5": 1,
"Usec_6": 1,
"Usec_7": 1
"5fc1223595572123ae7384a3": 1,
"5fc614f40b735e7b024c76e9": 1,
"5fc615110b735e7b024c76ea": 1,
"6284d6a28e4092597733b7a6": 1,
"6284d6ab8e4092597733b7a7": 1,
"668677330ae95580780867c6": 1,
"684696e8199c6a77dc0f9bc8": 1
}
},
"chances": {
@@ -190,6 +190,30 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BOTTOM_COEF": 0.1,
"BOT_MOVE_IF_DELTA": 3.01,
"COEF_FROM_COVER": 0.45,
"COEF_IF_MOVE": 1,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"TIME_COEF_IF_MOVE": 1.1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -414,7 +438,7 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -440,7 +464,7 @@
"NO_GRASS_DIST": 8,
"NO_GREEN_DIST": 8,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -448,7 +472,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,
@@ -458,6 +481,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,
@@ -523,7 +547,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,
@@ -714,6 +738,30 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BOTTOM_COEF": 0.1,
"BOT_MOVE_IF_DELTA": 3.01,
"COEF_FROM_COVER": 0.45,
"COEF_IF_MOVE": 1,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"TIME_COEF_IF_MOVE": 1.1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -938,7 +986,7 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -965,14 +1013,13 @@
"NO_GRASS_DIST": 8,
"NO_GREEN_DIST": 8,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
"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,
@@ -982,6 +1029,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,
@@ -1047,7 +1095,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,
@@ -1238,6 +1286,30 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BOTTOM_COEF": 0.1,
"BOT_MOVE_IF_DELTA": 3.01,
"COEF_FROM_COVER": 0.45,
"COEF_IF_MOVE": 1,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"TIME_COEF_IF_MOVE": 1.1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -1462,7 +1534,7 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -1488,14 +1560,13 @@
"NO_GRASS_DIST": 8,
"NO_GREEN_DIST": 8,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
"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,
@@ -1505,6 +1576,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,
@@ -1570,7 +1642,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,
@@ -1759,6 +1831,30 @@
"SHOOT_TO_CHANGE_PRIORITY": 5525,
"SHPERE_FRIENDY_FIRE_SIZE": -0.1,
"TIME_COEF_IF_MOVE": 1.1,
"UnderbarrelLauncherAiming": {
"ANYTIME_LIGHT_WHEN_AIM_100": 10,
"BOTTOM_COEF": 0.1,
"BOT_MOVE_IF_DELTA": 3.01,
"COEF_FROM_COVER": 0.45,
"COEF_IF_MOVE": 1,
"DAMAGE_TO_DISCARD_AIM_0_100": 86,
"DIST_TO_SHOOT_NO_OFFSET": 3,
"HARD_AIM": 0.75,
"MAX_AIMING_UPGRADE_BY_TIME": 0.25,
"MAX_AIM_PRECICING": 2,
"MAX_AIM_TIME": 1.5,
"MAX_TIME_DISCARD_AIM_SEC": 0.6,
"MIN_TIME_DISCARD_AIM_SEC": 0.3,
"NEXT_SHOT_MISS_Y_OFFSET": 1,
"OFFSET_RECAL_ANYWAY_TIME": 1,
"PANIC_ACCURATY_COEF": 1.2,
"PANIC_COEF": 1.2,
"PANIC_TIME": 2,
"RECALC_SQR_DIST": 0.48999998,
"SCATTERING_DIST_MODIF": 0.67,
"SCATTERING_DIST_MODIF_CLOSE": 0.6,
"TIME_COEF_IF_MOVE": 1.1
},
"WEAPON_ROOT_OFFSET": 0.35,
"XZ_COEF": 0.4,
"XZ_COEF_STATIONARY_GRENADE": 0.8
@@ -1983,7 +2079,7 @@
},
"Look": {
"BODY_DELTA_TIME_SEARCH_SEC": 1.7,
"CAN_LOOK_TO_WALL": true,
"CHECK_HEAD_ANY_DIST": false,
"COME_TO_BODY_DIST": 1.2,
"CloseDeltaTimeSec": 0.1,
@@ -2009,7 +2105,7 @@
"NO_GRASS_DIST": 8,
"NO_GREEN_DIST": 8,
"OLD_TIME_POINT": 11,
"OPTIMIZE_TO_ONLY_BODY": true,
"POSIBLE_VISION_SPACE": 1.2,
"VISIBLE_DISNACE_WITH_LIGHT": 100,
"WAIT_NEW_SENSOR": 2.1,
@@ -2017,7 +2113,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,
@@ -2027,6 +2122,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,
@@ -2092,7 +2188,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,
@@ -3053,12 +3149,6 @@
},
"inventory": {
"Ammo": {
"Caliber127x99": {
"67d41936f378a36c4706eeb9": 20,
"67dc212493ce32834b0fa446": 10,
"67dc255ee3028a8b120efc48": 5,
"67dc2648ba5b79876906a166": 1
},
"Caliber1143x23ACP": {
"5e81f423763d9f754677bf2e": 10,
"5ea2a8e200685063ec28c05a": 7,
@@ -3075,6 +3165,12 @@
"5cadf6e5ae921500113bb973": 4,
"5cadf6eeae921500134b2799": 2
},
"Caliber127x99": {
"67d41936f378a36c4706eeb9": 20,
"67dc212493ce32834b0fa446": 10,
"67dc255ee3028a8b120efc48": 5,
"67dc2648ba5b79876906a166": 1
},
"Caliber12g": {
"560d5e524bdc2d25448b4571": 10,
"58820d1224597753c90aeb13": 10,
@@ -21034,46 +21130,6 @@
"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"
@@ -21419,6 +21475,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"
]
}
}
},
@@ -35026,6 +35026,31 @@
"MaxInLobby": 0,
"MaxInRaid": 0,
"TemplateId": "6841b1ff51bf8645f7067bca"
},
{
"MaxInLobby": 0,
"MaxInRaid": 0,
"TemplateId": "686666db646d47fec3018925"
},
{
"MaxInLobby": 0,
"MaxInRaid": 0,
"TemplateId": "68750378555049ec270cdab7"
},
{
"MaxInLobby": 0,
"MaxInRaid": 0,
"TemplateId": "68666887df54e1190902df57"
},
{
"MaxInLobby": 0,
"MaxInRaid": 0,
"TemplateId": "68406efe068a2d99940c1ce3"
},
{
"MaxInLobby": 0,
"MaxInRaid": 0,
"TemplateId": "689b5f0f986634d56b0e099f"
}
],
"RunddansSettings": {
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Scav上衣 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Adik运动裤",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "运动装",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Crye Precision AVS 插板胸挂(Tagilla 版)",
"609e860ebd219504d8507525 ShortName": "AVS TE",
"609e860ebd219504d8507525 Description": "Tagilla 的插板胸挂,已经破损不堪。这件胸挂由 Crye Precision 公司制造的常规 AVS 模块化携行系统改造而来,只剩下了前胸的 3 个弹匣包。这点东西对于 Tagilla 来说或许刚好够用。",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "SIG Romeo 8T反射式瞄具",
"60a23797a37c940de7062d02 ShortName": "Romeo8T",
"60a23797a37c940de7062d02 Description": "SIG生产的Romeo 8T反射式瞄具。",
@@ -15116,6 +15122,9 @@
"683ed6ccd9a096739b0c9228 Name": "AK-50 护木与导气管组合",
"683ed6ccd9a096739b0c9228 ShortName": "AK-50",
"683ed6ccd9a096739b0c9228 Description": "AK-50 狙击步枪的 M-LOK 护木与导轨导气管组合。",
"68406efe068a2d99940c1ce3 Name": "固态硬盘",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "固态硬盘,用于存储数据,有着优于机械硬盘的读写性能。",
"68418091b5b0c9e4c60f0e7a Name": "USEC 狗牌",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "不锈钢材质的特制军用身份识别牌,主要用于在战场环境下快速识别死者与伤员的身份。这枚狗牌带有一抹不寻常的金色。",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "掷弹兵 T 恤衫",
"685ebb9dd8500c455802e9c8 ShortName": "掷弹兵",
"685ebb9dd8500c455802e9c8 Description": "周边 T 恤衫",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "通往军事基地的载具撤离点",
" Voip/DisabledForOffline": "VOIP在离线模式中不可用",
" kg": " kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "您已更改分辨率,是否要保持当前分辨率?",
"Resource": "资源量",
"RestSpace": "休息区",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "归还速度:",
"Revert": "重置",
"Revert your settings to default?": "您确定要恢复默认游戏设置?",
@@ -18970,6 +19015,21 @@
"TeamTab": "队伍",
"Teamkills": "队友击杀",
"Terrain quality:": "地形质量:",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "纹理质量设置将在游戏重启后生效。",
"Texture quality:": "纹理质量:",
"That item cannot be insured": "此物品无法投保",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "没问题。 <color=grey><i>(接受任务 \"{0}\")</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "搞定。 <color=grey><i>(完成任务 \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "我找到了这个。 <color=grey><i>(上交 \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "这里。<color=grey><i>(上交物品 \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "现在能去这些地方。挑一个吧。",
"Trading/Dialog/PlayerTaxi/Name": "坐车",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "好的,目的地——Rodina影院。这个车费没问题吧?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "黄队",
"starvDeaths": "饥饿致死数",
"stationHeals": "伤口治愈数",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "走私者的秘密基地",
"suicides": "自杀次数",
"survClass": "幸存者风格",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "赚点快钱 - 1",
"66058cb22cee99303f1ba067 name": "赚点快钱 - 1 [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "咋的了,哥们。一个活要给你:我有个老朋友正在找合适的人帮他办事,我自己不知道这里面的门路,只是帮他撒网招人而已。我看你还挺感兴趣的。\n\n你听说竞技场了吗?你得把竞技场的传单洒遍塔科夫。你懂的,就像什么“欢迎您来”之类的营销狗屁。嘿,别把这个不当活,成大事的人哪个不是从小差事干起的?我这里已经备好了几张海报,但如果你把它弄丢了,那他妈完全就是你的问题了,明白了吗?把这些花花绿绿的玩意拿去海关的 Scav 据点贴,去吧。",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "都贴完了?我会知会一声的。这是给你的报酬,之后还找你。",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "赚点快钱 - 2",
"66058cb5ae4719735349b9e8 name": "赚点快钱 - 2 [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "你好啊,冠军先生!之前我的朋友给了你一项任务试试身手。现在我决定来亲自和你谈。大家都叫我裁判,我管着竞技场,每天都有大把票子流进流出,哈!\n\n显然你并不介意赚点小钱,而我的确急需新的人手来参加比赛。生意越做越大,原来的阵容都有点不够用了,所以我们要扩张!\n\n我们很快就会举办另一场决斗,就像古罗马人说的那样:“人们需要面包和马戏团”。后者不成问题,但面包可能有点迟到了。当然,我向你保证这只是一时的供应短缺,不用担心。给我搞点食物和酒水来喂养观众就行。",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "你带来的所有物资都已经送到观众席上了,干得漂亮。",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "平衡之力 - 1",
"66058cb7c7f3584787181476 name": "平衡之力 - 1 [PVP ZONE]",
"66058cb7c7f3584787181476 description": "你出色地完成了我的任务。我还在数据库里查了查你的资料……当然,只是以防万一。这年头可不能随随便便雇人,明白我的意思吗,兄弟?你被正式提拔成测试员了!我要你为竞技场测试装备,这可是个相当有面子的工作。\n\n之前我拿很划算的价格收购了一批无托步枪,实在是一笔好买卖。你去找几个流浪汉试试枪吧。之后,我会决定这些步枪是给清场的用 还是发给角斗士们。",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "这枪不坏,对吧?实话告诉你吧,我一直对无托枪不感冒。AUG 那个扳机系统的构造怪得很,不光很难维护,而且太难适应了;此外抛壳口到底在哪边也很容易搞混。这枪就不适合给新手用,但射击手感确实没得说!我看还是不要让它烂在清场的人手里好了。 \n\n无论如何,这是你的报酬。",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "平衡之力 - 2",
"66058cb9e8e4f17985230805 name": "平衡之力 - 2 [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "好了,现在该来看看护甲怎么样了。这回是为最后清场的准备的。让我们瞧瞧它在迎战真正的雇佣兵时表现如何。试着穿着这件 PACA 甲去干几个 PMC 玩玩。之后我们再看还有什么新主意。",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "还活着?不赖嘛!什么,这背心就是一坨屎,什么子弹都挡不住?呃,那可太烂了。要是这样的话,那就不能给清场组穿,我得去找点其他能用的护甲了。\n\n这是你的报酬。关于平衡这码事我们现在就扯这么多吧。",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "惊喜",
"66058cbb06ef1d50a60c1f46 name": "惊喜 [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "我想到一个提升赛事观赏度的绝佳主意,但我需要你忙我个忙。\n\n我得为场上的一个角斗好手找点装甲板来——这人是竞技场的熟面孔了,也是时候给他升级点装备,让他用更精彩的表现技惊四座了。这算是表演的内在逻辑:要在热度恰到好处时趁热打铁,不然风头过去了谁还记得你?\n\n那么,现在去帮我找点装甲板来吧。 \n\n当观众看到那位好手重装亮相的时候,气氛一定好到爆棚!",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "你来得真是太及时了!剩下的时间不多了,不过当观众看到他们熟悉的英雄装备焕然一新的时候,肯定会乐不可支!这顶头盔算是给你的报酬,它的上一任主人换了顶更好的,哈!",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "制造干扰 - 1",
"66058cbd9f59e625462acc8e name": "制造干扰 - 1 [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "听着,我现在真把你当自己人了,像兄弟一样!我觉得我可以给你安排点真正的大活儿。\n\n我在竞技场那边有几个合伙人,Kaban和Kollontay,也许你听说过他们。我原以为他们挺不错的,但现在他们居然开始玩起政治了。他们想把自己的人安插成竞技场冠军,你能想象吗?而一个好的冠军可是能带来大把钞票的——你也懂的。重建这门生意可得花不少时间和钱啊。\n\n我们得给这帮家伙一点颜色看看,让他们知道自己已经越界了。带些炸药砖,去市中心的咖啡馆里放好。别带雷管——我们不会真的引爆什么,只是要摆出阵仗,让场面看起来很严重。让他们像热锅上的蚂蚁一样乱窜去吧。",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "哈,你应该看看他们发现炸药砖时的那副狼狈样!简直像一场好戏!可惜我们没把整个过程拍下来……你干得不错,这是你的报酬。",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "制造干扰 - 2",
"66058cbf2f19c31a5a1337ec name": "制造干扰 - 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Kaban 和 Kollontay 确实被吓得不轻,但对我来说,还远远不够。我想一劳永逸地解决他们。当然了,你不一定非得帮我……不过嘛……\n\n我已经有计划了。你得去他们的地盘,把那些保镖——或者说他们信得过的人——都干掉。那里的人都是Kaban和Kollontay的心腹,正是下手的好目标。**但记住!**千万别伤到Kaban和Kollontay本人!",
"66058cbf2f19c31a5a1337ec failMessageText": "你到底看清楚自己在朝谁开枪了吗?!我本来对你寄予厚望的。",
"66058cbf2f19c31a5a1337ec successMessageText": "干得漂亮!Kaban 和 Kollontay已经开始抓狂了。我想用不了多久,他们就会主动来找我,想要抽身退出这场游戏了。\n\n这是你应得的报酬。",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "再创新高!- 1",
"66058cc1da30b620a34e6e86 name": "再创新高!- 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "哦哟哟,你完成了你的第一次考验。我觉得现在正是竞技场迎来新冠军的时候了。而那个人,就是你。当然,是你自愿的,我们这儿可不搞什么残酷压迫,哈哈!\n\n我可以带你登上权力与财富的巅峰,远超你想象的一切。你只需要接受我的提议。但你知道的,行动永远胜于言辞。所以,去吧,走进竞技场并赢下比赛。只有那样,我才会知道你已经准备好迈出下一步了。",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "我从来没有怀疑过你,兄弟!但记住,我们是在给观众带来娱乐。我们需要更大的场面!有时候你看起来就像是在打靶罐子,你懂的。",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "再创新高!- 2",
"66058cc208308761cf390993 name": "再创新高!- 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "从现在起,你就是我罩的了,兄弟。我会保证你的人气在竞技场里一路扶摇直上,但你也得经常在赛场上亮相才行。\n\n让我们先从最基础的部分开始:竞技场设在塔科夫没错,但最大的赞助商其实来自海外,这帮外国佬从不错过每场比赛,下的赌注也很大,给自己喜欢的选手投钱也毫不吝啬。而你得让这帮有钱的外国佬对你也感兴趣才行,去亮亮相,拿你的成绩吸引他们的注意,证明你值得投资,在竞技场打出名堂来!靠运气赢上个把场次可不够,你得让他们血脉贲张才行!",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "进步很不错!你的名声已经传到国外啦,外面那帮人都很有兴趣。这是事情走上正轨的标志!",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "再创新高!- 3",
"66058cc5bb83da7ba474aba9 name": "再创新高!- 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "你最近干得很不错!不过现在就收手未免有点太早了。你得经常在场上亮相,用技巧给观众留下印象,在同场的角斗士里脱颖而出,才能成为人们茶余饭后的谈资!到了那一步,票子自然是滚滚而来,其他的好东西更是不在话下:豪车,美女……虽然后一样在塔科夫可能有点稀缺。\n\n无论怎么样,竞技场算是你的职业生涯转折点了,哈!",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "现在你离真正的大场面抛头露面又近了一步!向你致敬,兄弟。",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "再创新高!- 4",
"66058cc72cee99303f1ba069 name": "再创新高!- 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "最近的势头怎么样?等不及要上场了?准备好再一次技惊四座了?准备好打烂对面傻逼的蠢脸了?大伙在你身上下的赌注可是水涨船高,千万别让观众失望了!\n\n既然说到这个,你有钱吗?只要在自己身上下注,然后赢个六场,就能名利双收啦!把钱准备好,下注的事情我自然会找人安排。不过你得注意了:要是你输了五场,你就得从头开始打了。",
"66058cc72cee99303f1ba069 failMessageText": "唉,你差点就成功了。再试一次吧,看样子观众对你还是有所期待的。",
"66058cc72cee99303f1ba069 successMessageText": "这是你的支票。我已经预先扣除了所有必要的费用:贿赂对手,手续费,还有其他乱七八糟的东西。那样看着我干什么?难道你以为我的服务是免费的?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "再创新高!- 5",
"66058cc9ae4719735349b9ea name": "再创新高!- 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "我有个好消息!实际上,是天大的好消息:我希望你已经看好了房,拿定主意在塔科夫富人区的豪华公寓里自己要住哪一栋,因为只要干完这一票,你马上就能有钱在这住下来了!开玩笑的,这地方所有的房子过不了几个月就得被炸塌了。\n\n不扯闲话了,总之你需要知道的是,国外有一群大佬对你很感兴趣。他们是谁?我当然不可能告诉你具体的名字,这可是我的商业机密,你只要知道他们有权有势还富得流油就行了。此外我还签了保密协议,不能随随便便走漏风声。反正,这些大佬已经决定好罩你,并且愿意在你身上投入大笔资金,但在此之前他们需要你打出成绩,确保这笔投资物有所值。\n\n你得成为冠军才行,冲上云霄,把其他人都踩在脚下。为了实现这一目标,你就必须多泡在竞技场离。看你的眼神就知道你已经准备好了。",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "你实在是太能打了。有个法国名人——出于隐私我肯定是不会告诉你他的名字的——对你相当感兴趣。虽然口风管得紧,但是他出售相当阔绰。我已经安排好资助的一切事宜了。",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "良心作祟 - 1",
"66058ccbc7f3584787181478 name": "良心作祟 - 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "你好,我听说你最近在为那个裁判效劳。不需要知道具体细节,我关注你已经有一会了。 \n\n我之前认识过另一个人,和你一样,他也和那个裁判纠缠不清。这人甚至一度成为了竞技场的冠军——至于你为什么没有听说过他,自然是因为幸运女神没有垂青他太久,前任冠军先生还没来得及享受名声带来的一切,就人间蒸发、消失得无影无踪了。我这边可以肯定的是,Kaban 和 Kollontay 兄弟俩和这件事没关系,剩下的部分你就自己发挥想象吧。\n\n如果你不想落得和那个家伙一样的下场,就去帮我找到前任冠军的公寓。我敢打赌,那里肯定还有些有价值的东西值得打探。那个冠军曾经和海关宿舍楼的走私者们混得很熟。也许你可以从那里入手,找到进入公寓的办法。",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "天真到打算亲自去找裁判问个明白?好吧,很高兴认识你,小朋友。",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "良心作祟 - 2",
"66058ccde8e4f17985230807 name": "良心作祟 - 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "也就是说,你已经进过前任冠军先生的公寓了?既然如此,我只能假装无事发生了。你只需要记住,好奇害死猫,而前任冠军先生同理。他是个不错的家伙,我对他的印象不坏,但他最后被冠军的名头蒙蔽了双眼,在花言巧语中迷失了作为战士的本能。\n\n比起在城市里到处闲逛,你应该多上场练练。不然你在竞技场的地位只会一路下滑。",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "这就对了!你应该多花时间去磨练技巧,而不是整天想入非非。要是你没来我这,天知道会有什么意外呢?",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "两害相权",
"66058ccf06ef1d50a60c1f48 name": "两害相权 [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "所以,你看见了一具尸体。那你好好搜过尸体的身了吗?有没有检查过周围的东西?这与贪婪无关,我只是指出了你的盲目而已。据我所知,那个冠军总是随身携带一个笔记本。没错,和小孩子似的,但是有时候真的能派上用场。\n\n那你为什么再回去仔细看看呢?笔记本里总归会有些关于裁判的消息吧,某种黑料也不是没有可能。如果你不想继续在竞技场被当成炮灰,里面的东西都会有用的。\n\n最后别忘了:只要你带回来任何有价值的消息,我都会给你丰厚的报酬。",
"66058ccf06ef1d50a60c1f48 failMessageText": "所以你决定继续当他的狗?随便你。",
"66058ccf06ef1d50a60c1f48 successMessageText": "非常好。很高兴你能掌握自己命运的主动权。\n\n记住在那个裁判面前别提一个字。",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "两难抉择",
"66058cd19f59e625462acc90 name": "两难抉择 [PVP ZONE]",
"66058cd19f59e625462acc90 description": "我听到了些风言风语……相当不愉快的那种。有人说你想搞砸我的生意。\n\n听着,我们认识有段时间了。你就像我的兄弟一样。别做傻事,你以后肯定会后悔的。你知道的越少,睡得越香,听到了吗?\n\n在重新获得我的绝对信任之前,我得让我的人监视你了,我只是不希望你耍什么花招,冠军。如果你和老冠军会面时发现了什么,拿来给我看。到时候就可以忘了这个小意外了。",
"66058cd19f59e625462acc90 failMessageText": "有人拿枪指着你的头,把东西都抢走了是吗?哼,别把我当傻子耍!那本该死的笔记现在在哪?去你妈的。无所谓,之后自有办法来料理你。",
"66058cd19f59e625462acc90 successMessageText": "你做出了正确的选择。我一直都信任你的,兄弟。那我们就把这小小的不愉快抛之脑后吧,以后也别开这种玩笑了,听见了吗?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "真是个大家伙!希望你把它搬来的路上没费太大功夫。放在这就行了,你为我做了这么多事,我这辈子都不会忘记的。谢谢你!",
"6744a964dc1b1e2ee134ffeb": "上交物品:6-STEN-140-M 军用电池",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "搬那种东西非得把腰折了不可……算了,我去找找看。",
"6744a728352b4da8e003eda9 declinePlayerMessage": "免了,上回我找到一块那种电池,结果花了几个小时才爬回藏身处。抱歉,但我不打算再爬一次。",
"6744a728352b4da8e003eda9 completePlayerMessage": "这是你要的东西。下回别指望我替你背这种东西来。",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "真是个大家伙!希望你把它搬来的路上没费太大功夫。放在这就行了,你为我做了这么多事,我这辈子都不会忘记的。谢谢你!",
"6744a9dfef61d56e020b5c54": "上交物品:6-STEN-140-M 军用电池",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "搬那种东西非得把腰折了不可……算了,我去找找看。",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "免了,上回我找到一块那种电池,结果花了几个小时才爬回藏身处。抱歉,但我不打算再爬一次。",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "这是你要的东西。下回别指望我替你背这种东西来。",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "你确定就是这个吗?嗯,我能闻到酒香,就是这个味! \n\nRagman 昨天把疗养院地下牢房的事情告诉我了,喋喋不休的,我甚至得把他灌上一轮才勉强岔开话题。反正疗养院下面是个苏联时期的防空洞,然后竞技场裁判准备在那里举办角斗,仅限 VIP 观众入场的那种。我猜他们还把 Tagilla 给抓来了,不,应该是别的什么东西。\n\n那反正,为了搞这个竞技场的东西,裁判从 Ragman 那定了一大批装备,一切都筹备得差不多了。结果主持人一下子出局了。什么情况?鬼才知道。\n\nRagman 对这个计划打了水漂还是很介意的。但他应该已经交付了部分装备,并且肯定用过你正在找的那些钥匙卡。具体细节你最好还是问他本人,昨天的事情我已经有点想不起来了。顺便一提,谢谢你的酒。",
"67a0da26a3b8d254347b8634": "上交 1 瓶“凶狠跑刀崽”私酒",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "你昨天没喝到“样品”就挂了。给,Ragman 让我把这个带给你,让你亲自试喝。",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "顺便一问:你听说过疗养院地下设施以及钥匙卡的任何消息吗?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "天降大礼",
"67e993b1ac26bf29380a320b name": "天降大礼 [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "我听说你卷进了 Fence 和竞技场裁判之间的风波。也是,在招惹到这种人物之后,这里算是你唯一能来的地方了。你想报复一下那个裁判?嗯……这倒是可能会对我有利。去给我找点他的脏材料来,我会想办法利用好的。",
"67e993b1ac26bf29380a320b failMessageText": "要是你从一开始就打定主意把情报交给那两个人,还来我这干什么? ",
"67e993b1ac26bf29380a320b successMessageText": "很高兴你能明白,和谁做朋友更有利。",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "你会得到你要的材料的。",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "这是我找到的所有材料。",
"67e993f5ed537409f009da75 name": "迟来的奖励",
"67e993f5ed537409f009da75 name": "迟来的奖励 [PVP ZONE]",
"67e993f5ed537409f009da75 description": "好吧,你拿的那些材料确实反将了我一军。不过,不像你,我是个言而有信的人。我会把那个该死的保险箱给你弄来的。但是现在你得付出点额外的代价了。",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "好,现在你已经拿到你的奖励了。但是最好记住了,我不会再和你有任何往来了。接着回去捡你的破烂,和那个什么狗屁冠军一样烂在外面吧!",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Easy Money - Part 1 [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Sup mate. Got a job for ya. An old pal of mine is looking for the right people for his business. I don't know the ins and outs, just the first stage of recruitment, so to speak. I see you're interested.\n\nYou heard anything about the Arena yet? You gotta put up flyers around Tarkov. Like \"come and check it out\", shit like that, you know. Hey, serious people always start small! I've got a couple of posters ready for ya, but if you lose them, it's your own bloody problem, got it? Bring them to the Scav stronghold at the customs terminal. Off you go then.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "All done? I'll pass it on then. Here are some goodies in the meantime.",
"6834145ebc1f443d7603c8ab": "Plant the Bison vs Undertaker poster in the living quarters at the Scav base on Customs",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Easy Money - Part 2 [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "Hello, champion! A friend of mine gave you a little tryout assignment. Now I've decided to meet you in person. People call me Ref. Hosting the Arena and the big bucks, ha!\n\nClearly you don't mind making money, and I'm in desperate need of new staff. Business is booming, and I'm short-handed. We're expanding!\n\nWe got another fight planned soon. As they used to say in ancient Rome, \"the people demand bread and circuses.\" The latter is fine, but the bread is running late. A little supply disruption, don't worry about it. Just get me some food and booze for the audience.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Everything you brought has already been sent to the seats. Well done.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Hand over the found in raid items from the Food category",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "平衡之力 - 1 [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "平衡之力 - 2 [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "还活着?不赖嘛!什么,这背心就是一坨屎,什么子弹都挡不住?呃,那可太烂了。要是这样的话,那就不能给清场组穿,我得去找点其他能用的护甲了。\n\n这是你的报酬。关于平衡这码事我们现在就扯这么多吧。",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Surprise [PVE ZONE]",
"68341b407559f4e6d50bc0ce description": "I came up with a great idea to make the Arena even better. And I need your help.\n\nI need to find some armor plates for a guy. He's a frequent performer, so it's time to give him an upgrade to get the crowd excited. That's the thing about shows, you don't add wood in time, the fire goes out.\n\nWell, now go get me some armor plates. \n\nThe crowd's gonna squeal when they see him!",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "Just what I needed! Not much more to go. Everyone will be thrilled when they see the results, I promise! Here's a helmet as a reward. His last owner has a better one now, ha!",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Create a Distraction - Part 1 [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "Ha, you should have seen the chaos when they found the bricks! What a show! It's a damn shame we didn't film the whole thing... You did a good job. Here's your reward.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Create a Distraction - Part 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "Can't you see who you're shooting at?! I had such high hopes for you.",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "To Great Heights! - Part 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "I never doubted you for a second, brother! But remember, we're here to entertain people. We need a bigger show! Sometimes it looks like you're just shooting cans, you know.",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "To Great Heights! - Part 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "You're under my wing from now on, brother. I'll make sure you get progress good, but you're gonna have to get your ass in gear more often.\n\nLet's start with the basics. The Arena's in Tarkov, but the biggest sponsors are overseas. They watch every game, place bets, throw money at the favorites. And you need to get some of those big shots interested. Get their attention, show them you're worthy. Make a name for yourself. One win alone isn't enough to do it. Show them you can make a thrilling performance!",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "I see the progress you're making! They're starting to talk about you overseas. People are interested. It's a sign that you're doing the right thing!",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "To Great Heights! - Part 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "You're doing great! But it's too early to stop. Shine your face more often, impress the audience. Stand out. Become the one they talk about, the one they come to see. Then the cash will come, and then other goodies: cars, girls... Although Tarkov is a little short on the latter.\n\nAnyway, the Arena is a great career opportunity right now, ha!",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "And now you're one step closer to the big leagues! Respect, brother.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "To Great Heights! - Part 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "How's the mood? Battle-ready? Ready to shine in the Arena once more? Ready to shred some motherfuckers? The odds are still stacked against you, so don't let the audience down!\n\nSpeaking of that. You got some money? You gotta bet on yourself and then win six times. You'll make tons of cash, and you'll be famous. Bring the money, I'll organize everything. Just be warned: if you lose five times, you start again.",
"683421515619c8e2a9031511 failMessageText": "Oh man, you almost did it. Try again, the audience still seems to favor you.",
"683421515619c8e2a9031511 successMessageText": "Here's your paycheck. I deducted all my services from it straight away: bribing opponents, fees, and all that. What, you thought I work for free?",
"683421515619c8e2a9031514": "Hand over Roubles from the EFT balance",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Failure Condition: Lose 4 matches",
"683421515619c8e2a903151b": "Failure condition: Lose 5 matches",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "To Great Heights! - Part 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "I have good news! Excellent news, in fact! I hope you've already picked out a little apartment in Tarkov's elite neighborhood, because you'll have it soon with all this money! Kidding. All the houses in those neighborhoods are soon gonna collapse anyway.\n\nAnyway, some very powerful people from across the border are interested in you. Powerful and wealthy. I can't tell you their names, it's a business secret, and I'm not violating what I signed. So, these people are ready to take you under their wing and sponsor you heavily, but first they want guarantees.\n\nYou need to become the champion. Fly high, soar above the rest. You're gonna have to spend more time in the Arena. I can see it in your eyes that you're ready.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "You're really good. A very famous French man — I won't tell you his name for privacy — is interested in you. Lispy as hell, but he's offering good money. I've already arranged for your sponsorship.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Against the Conscience - Part 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Hello. I hear you're working for Ref now. I've been keeping tabs on you for a while. \n\nI used to know a man who got tangled up just like you. He was Ref's previous champion for a while and then all of a sudden he disappeared. And I know for sure this had nothing to do with Kaban and Kollontay. \n\nIf you don't want to vanish the same way this guy did, look for the last champion's apartment. I believe there's something of interest left there. The champion used to hang out with the smugglers in Dorms on Customs. Maybe you'll find some clues on how to get into the apartment.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "You want to ask Ref yourself? Well, it was nice knowing you.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Find out what happened to the champion",
"6834233fecd5cf3a440d8564": "Survive and extract from the location",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Against the Conscience - Part 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "So you're saying you were in the last champion's apartment? All right then. I'll pretend like it never happened. Just remember, curiosity killed the cat. And the last champion, too. He was a good guy, I liked him, but he got soft, lost his touch.\n\nYou should be practicing more, not wandering around the city. Otherwise, your ranking will start to drop.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "There you go! Time should be spent improving your skills. Who knows what happens if you don't?",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Decisions, Decisions [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "I've been hearing rumors... Very unpleasant rumors. They say you're trying to dig my business up.\n\nLook, we've known each other for a while. You're like a brother to me! Don't do something you'll regret later. The less you know, the better you sleep, you hear that?\n\nUntil I'm absolutely confident in you, I'm gonna have my men watching you. I don't want you pulling any stunts, champ. And if you find anything during your little date with the old champion, bring it to me. Then we can forget about this happy little accident.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "You made the right choice. Never doubted you, brother. All right, no more funny business from now on, you hear me?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Hand over the found info",
"6834254f2f0e2a7eb90b62f4": "You must not complete the task Between Two Fires",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Between Two Fires [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.",
"683425dd8f5b18d29a05d9d1 failMessageText": "You want to stay under Ref's skirt? You do you then.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Locate the old champion's hideout",
"683425dd8f5b18d29a05d9d4": "Return to the old champion's hideout on Customs",
"683425dd8f5b18d29a05d9d6": "Locate and obtain the compromising information on Ref",
"683425dd8f5b18d29a05d9d8": "Hand over the found info",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "上交物品:传奇奖章",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "同好俱乐部",
"684009026ceedc792c09b2a7 description": "太好了,我正等着你呢。我在美国有个朋友,他是个技术精湛的武器专家,对俄罗斯枪械很着迷。近几年来他一直在研究自己的项目,叫做 AK -50。你肯定没见过 .50 口径的 AK 吧?更别提这还是北约机枪弹规格的。\n\n现在他的项目终于完成了,给我也寄来了一份样品用来测试。不用说,把这样一件特种用途的重型武器整个运进来的风险也太大了,所以我们把包裹拆成了几部分,看看能不能分批通过封锁线。你猜怎么着——在塔科夫,不出意外的情况下一般是要出意外的。令人震惊,我知道。\n\n枪身主体,也就是机匣部分是一体打造的,这部分包裹还没来得及踏上欧洲大陆就在大西洋海上被截住了。不过我有蓝图,所以我需要你参照蓝图帮我重新造一个出来。我知道以我们现在的处境,想要办成这件事肯定不容易。但至少你还有一份蓝图,之后想怎么折腾都成。\n\n护木和导气管是一体的,不知道怎么落到了 Skier 那帮人的手里。整个部件花费了我朋友两年时间才完成制造和适配工作,整个开发过程以及原型枪械的制造成本已经达到了上百万美元,可不能让那群小混混坏了事。\n\n防尘盖部件已经运到塔科夫了,但是在某个检查站被拦了下来。我没法追查到包裹的具体位置,因此你得到处都跑一趟。但有一点是确定的,枪管部分肯定在储备站:Glukhar 的人马专门设伏拦截了我的送货队伍,显然他们肯定知道了这批货的消息。你要么直接开打,把包裹从这帮人手里抢回来,要么就只能祈求天意能让事情出现转机了。\n\n一旦你搞到了所有的部件,把它们带到海关新加油站后山信号塔那边的交货点,我会让我的人从那里接手。之后我就能自己制造这些部件了。当然了,你帮了我这么多,我是不会忘记的。",
"684009026ceedc792c09b2a7 failMessageText": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "你的意思是都办好了?干得好,大兵。",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "直抵繁星",
"6842c27a38482d35ac0bd847 description": "抵达转生 4 级",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Scav vršek 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Tepláky Adik",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "Sportovní",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Nosič plátů Crye Precision AVS (Edice Tagilla)",
"609e860ebd219504d8507525 ShortName": "AVS ET",
"609e860ebd219504d8507525 Description": "Značně opotřebovaný Tagillův nosič plátů založený na modulárním systému AVS od společnosti Crye Precision. Má jeden přední plát se třemi připojenými pouzdry. A to je v podstatě vše. Nic víc, nic míň.",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "Kolimátor SIG Sauer ROMEO8T",
"60a23797a37c940de7062d02 ShortName": "ROMEO8T",
"60a23797a37c940de7062d02 Description": "Reflexní zaměřovač ROMEO8T určený pro přesnou střelbu z moderních sportovních pušek a brokovnic. Vyrábí společnost SIG Sauer.",
@@ -15116,6 +15122,9 @@
"683ed6ccd9a096739b0c9228 Name": "Předpažbí AK-50 s plynovým násadcem",
"683ed6ccd9a096739b0c9228 ShortName": "AK-50",
"683ed6ccd9a096739b0c9228 Description": "Předpažbí M-LOK s olištovaným plynovým násadcem pro AK-50 odstřelovací pušku.",
"68406efe068a2d99940c1ce3 Name": "SSD disk",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "Solid state drive (SSD). Slouží k ukládání dat s vyšší rychlostí čtení a zápisu.",
"68418091b5b0c9e4c60f0e7a Name": "Psí známka USEC",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "Speciální psí známka z nerezové oceli sloužící k rychlé identifikaci zraněných a zemřelých v boji. Má neobvyklý zlatý odstín.",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "Granátník triko",
"685ebb9dd8500c455802e9c8 ShortName": "Granátník",
"685ebb9dd8500c455802e9c8 Description": "Merch triko",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "Auto u cesty na vojenskou základnu",
" Voip/DisabledForOffline": "VOIP není v offline režimu dostupný",
" kg": " kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "Rozlišení bylo změněno. Chcete zachovat aktuální rozlišení?",
"Resource": "ZDROJ",
"RestSpace": "ODPOČÍVÁRNA",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "Návratnost:",
"Revert": "VRÁTIT",
"Revert your settings to default?": "Jste si jisti, že chcete vrátit nastavení na výchozí hodnoty?",
@@ -18970,6 +19015,21 @@
"TeamTab": "Týmy",
"Teamkills": "Zabití vlastních",
"Terrain quality:": "Kvalita terénu:",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "Nastavení kvality textur bude použito po restartování hry.",
"Texture quality:": "Kvalita textur:",
"That item cannot be insured": "Tento předmět nemůže být pojištěn",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "Provedu. <color=grey><i>(přijmout úkol \"{0}\")</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "Hotovo. <color=grey><i>(dokončit úkol \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "Tohle jsem našel. <color=grey><i>(předat \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "Tady. <color=grey><i>(předat předmět \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "Tady je seznam míst, kam tě mohu odvést. Vyber si.",
"Trading/Dialog/PlayerTaxi/Name": "Taxi",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Dobře, cíl je kino Rodina. Cena vyhovuje?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "ŽLUTÝ TEAM",
"starvDeaths": "Smrt z vyhladovění",
"stationHeals": "Odborné léčení",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "Pašerácký sklep",
"suicides": "Sebevraždy",
"survClass": "Třída přeživšího",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "Snadné peníze - Část 1",
"66058cb22cee99303f1ba067 name": "Snadné peníze - Část 1 [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "Čau kámo. Mám pro tebe práci. Jeden můj starej známý hledá ty správný lidi pro svůj byznys. Neznám všechny detaily, jen tu první fázi náboru, tak říkajíc. Vidím, že máš zájem.\n\nSlyšel jsi už něco o Aréně? Musíš po Tarkovu rozvěsit letáky. Něco jako \"přijďte se podívat\", takový věci, chápeš. Hele, i vážný věci začínají malýma krůčkama! Mám pro tebe pár plakátů, ale jestli je ztratíš, je to tvůj problém, jasný? Přines je do pevnosti Scavů u terminálu na Customs. Tak jdi na to.",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "Všechno hotový? Předám jim to. Tady jsou mezitím nějaký mňaminky.",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "Snadné peníze - Část 2",
"66058cb5ae4719735349b9e8 name": "Snadné peníze - Část 2 [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "Ahoj, šampióne! Jeden můj přítel ti dal malý zkušební úkol. Teď jsem se rozhodl, že se s tebou setkám osobně. Lidé mi říkají Ref. Hostování v Aréně a velké peníze, ha!\n\nOčividně ti nevadí vydělávat peníze a já zoufale potřebuji nové zaměstnance. Obchod vzkvétá a já mám málo lidí. Rozšiřujeme se!\n\nBrzy máme v plánu další zápas. Jak se říkalo ve starém Římě, \"lid si žádá chléb a cirkusy\". To druhé je v pořádku, ale chléb nestíhá. Drobné narušení dodávek, s tím si nedělej starosti. Jen mi přines nějaké jídlo a chlast pro diváky.",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "Všechno, co jsi přinesl, už bylo posláno na svá místa. Dobrá práce.",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "Vyrovnávání - Část 1",
"66058cb7c7f3584787181476 name": "Vyrovnávání - Část 1 [PVP ZONE]",
"66058cb7c7f3584787181476 description": "Na mých úkolech jsi odvedl skvělou práci. Také jsem tě prošel ve svých databázích... Jen pro jistotu. Nenajímáš jen tak někoho, víš, co tím myslím, bratře? Povýším tě na testera! Budeš testovat vybavení pro Arénu.\n\nPrávě jsem dostal dobrou várku bullpupů za výbornou cenu. Jdi do toho a vyzkoušej je na nějakých pobudech. Potom se rozhodnu, jestli tyhle pušky dostanou moji uklízeči, nebo gladiátoři.",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "To není špatná zbraň, co? Popravdě řečeno, mám pro bullpupy slabost. AUG je samozřejmě náročný na údržbu, má divný spoušťový mechanismus, těžko se na něj zvyká, navíc se snadno zapomíná na stranu výhozního otvoru. Rozhodně to není zbraň pro amatéry. Ale pálí to tak dobře! Raději bych ji nedával uklízečům.\n\nKaždopádně tady je tvoje odměna.",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "Vyrovnávání - Část 2",
"66058cb9e8e4f17985230805 name": "Vyrovnávání - Část 2 [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "Teď je čas vyzkoušet neprůstřelnou vestu. Toto je určeno pouze pro úklidovou četu. Uvidíme, jak obstojí proti skutečným žoldákům. Zkus zabít několik PMC, když máš na sobě tento PACA armor. Potom uvidím, co ještě vymyslím.",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "Živý? Dobře! Cože, ten armor je nahovno a nic nevydrží? No, do prdele, to je škoda. Pro úklidovou četu bude příliš slabý, takže budu muset najít lepší model.\n\nTady máš odměnu. Prozatím skončíme s tím vyvažováním.",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "Překvapení",
"66058cbb06ef1d50a60c1f46 name": "Překvapení [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "Přišel jsem na skvělý nápad, jak Arénu ještě vylepšit. A potřebuji tvoji pomoc.\n\nPotřebuji sehnat nějaké balistické pláty pro jednoho chlápka. Je to častý účastník, takže je na čase mu dát vylepšení, aby nadchl publikum. To je ta věc s představeními, když včas nepřidáš dřevo, oheň uhasne.\n\nTak a teď mi běž sehnat nějaké balistické pláty.\n\nDav bude pištět, až ho uvidí!",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "Přesně to jsem potřeboval! Už toho moc nezbývá. Všichni budou nadšení, až uvidí výsledky, slibuji! Tady je helma jako odměna. Její poslední majitel má teď lepší, ha!",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "Odvedení pozornosti - Část 1",
"66058cbd9f59e625462acc8e name": "Create a Distraction - Part 1 [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "Podívej, začínáš mi připadat jako rodina. Jako bratr! Myslím, že ti můžu dohodit nějakou pořádnou práci.\n\nMám v Aréně pár spoluzakladatelů, Kabana a Kollontaye, možná je znáš. Myslel jsem, že jsou to fajn kluci, ale teď se rozhodli hrát politiku. Chtějí do Arény dosadit svého šampiona, dovedeš si to představit? A dobrý šampion přináší tolik peněz, to bys věděl. Bude to chtít hodně času a peněz na obnovu podniku.\n\nMusíme ty chlapy vyděsit, aby si uvědomili, že překračují hranici. Vezmi pár výbušných cihel a nastraž je do kavárny v centru města. Bez detonátorů. Nic nevyhodíme do vzduchu, ale ať to vypadá jako velká věc. Ať jsou vyděšení.",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "Ha, měl jsi vidět ten zmatek, když našli cihly! To byla podívaná! Škoda, že jsme to celé nenatočili... Odvedl jsi dobrou práci. Tady máš odměnu.",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "Odvedení pozornosti - Část 2",
"66058cbf2f19c31a5a1337ec name": "Odvedení pozornosti - Část 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Kaban a Kollontay se posrali, ale to mi nestačí. Chtěl bych je dorazit. Nemusíš mi s tím samozřejmě pomáhat, ale...\n\nUž mám plán. Musíš jít k nim dolů a zastřelit jejich bodyguardy nebo jak se jim říká. Každý z nich je pro ty dva důvěryhodnou osobou, takže jsou ideálním cílem. ALE! Ujistěte se, že Kaban a Kollontay jsou sami nezranění!",
"66058cbf2f19c31a5a1337ec failMessageText": "Nevíš, na koho máš střílet?! Měl jsem v tebe tak velké naděje.",
"66058cbf2f19c31a5a1337ec successMessageText": "Dobrá práce! Kaban a Kollontay už burácejí. Myslím, že za mnou brzy přijdou a budou se snažit z tohoto podniku odejít.\n\nTady máš zaslouženou odměnu.",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "Do velkých výšin! - Část 1",
"66058cc1da30b620a34e6e86 name": "Do velkých výšin! - Část 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "Mohu ti pomoci dosáhnout výšin a bohatství, o jakých se ti ani nesnilo. Stačí, když přijmeš mou nabídku. Ale víš, činy vždycky převáží nad slovy. Tak do toho, vstup do Arény a vyhraj. Podle toho poznám, že jsi připraven posunout se dál.",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "Ani na vteřinu jsem o tobě nepochyboval, bratře! Ale nezapomeň, že jsme tu proto, abychom lidi bavili. Potřebujeme větší show! Někdy to vypadá, jako bys jen střílel do plechovek, víš?",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "Do velkých výšin! - Část 2",
"66058cc208308761cf390993 name": "Do velkých výšin! - Část 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "Odteď jsi pod mými křídly, bratře. Postarám se o to, aby jsi dělal dobré pokroky, ale budeš muset častěji zvednout zadek.\n\nZačneme se základy. Aréna je v Tarkově, ale největší sponzoři jsou v zámoří. Sledují každý zápas, sázejí, házejí peníze na favority. A ty potřebuješ, aby se o to někteří z těch velkých lidí zajímali. Získej jejich pozornost, ukaž jim, že za to stojíš. Udělej si jméno. Jedno vítězství k tomu samo o sobě nestačí. Ukaž jim, že umíš předvést strhující výkon!",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "Vidím, že děláš pokroky! Začíná se o tobě mluvit i v zámoří. Lidé se o tebe zajímají. To je znamení, že to děláš správně!",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "Do velkých výšin! - Část 3",
"66058cc5bb83da7ba474aba9 name": "Do velkých výšin! - Část 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "Vedeš si skvěle! Ale je příliš brzo na to, aby jsi přestal. Častěji se blýskni, zapůsob na publikum. Vynikni. Staň se tím, o kom se mluví, tím, za kým se chodí. Pak přijdou peníze a pak další mňaminky: auta, holky... I když na to poslední je Tarkov trochu krátký. \n\nKaždopádně Aréna je teď skvělá kariérní příležitost, ha!",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "A teď jsi o krok blíže k velké lize! Respekt, bratře.",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "Do velkých výšin! - Část 4",
"66058cc72cee99303f1ba069 name": "Do velkých výšin! - Část 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "Jaká je nálada? Jsi připraven na bitvu? Jsi připraven znovu zazářit v Aréně? Jsi připraven rozbít pár sráčů? Šance jsou stále vyrovnané, tak nezklam publikum!\n\nKdyž už jsme u toho. Máš nějaké peníze? Musíš si vsadit sám na sebe a pak šestkrát vyhrát. Vyděláš hromadu peněz a budeš slavný. Přines peníze, já všechno zařídím. Jen pozor: když pětkrát prohraješ, začínáš znovu.",
"66058cc72cee99303f1ba069 failMessageText": "Ou chlape, málem se ti to povedlo. Zkus to znovu, diváci se stále zdají být na tvé straně.",
"66058cc72cee99303f1ba069 successMessageText": "Tady je tvoje výplata. Hned jsem z ní odečetl všechny své služby: podplácení soupeřů, poplatky a tak. Snad sis nemyslel, že pracuju zadarmo?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "Do velkých výšin! - Část 5",
"66058cc9ae4719735349b9ea name": "Do velkých výšin! - Část 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "Mám dobrou zprávu! Vlastně vynikající zprávu! Doufám, že už máš vybraný malý byt v elitní tarkovské čtvrti, protože za tyhle peníze ho budeš mít brzy! Dělám si legraci. Všechny domy v těch čtvrtích se stejně brzy zhroutí.\n\nKaždopádně se o tebe zajímá několik velmi vlivných lidí zpoza hranic. Mocní a bohatí. Nemůžu ti říct jejich jména, je to obchodní tajemství a já neporuším, co jsem podepsal. Takže tihle lidé jsou připraveni vzít tě pod svá křídla a vydatně tě sponzorovat, ale nejdřív chtějí záruky.\n\nMusíš se stát šampionem. Létat a vznášet se vysoko nad ostatními. Budeš muset trávit víc času v Aréně. Vidím ti na očích, že jsi připraven.",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "Jsi opravdu dobrý. Zajímá se o tebe jeden velmi slavný Francouz, jehož jméno ti kvůli soukromí neřeknu. Mazaný jako peklo, ale nabízí dobré peníze. Už jsem ti zařídil sponzoring.",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "Proti svědomí - Část 1",
"66058ccbc7f3584787181478 name": "Proti svědomí - Část 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "Ahoj. Slyšel jsem, že teď pracuješ pro Refa. Nějakou dobu jsem tě sledoval.\n\nZnal jsem člověka, který se zapletl stejně jako ty. Nějakou dobu byl Refovým předchozím šampionem a pak z ničeho nic zmizel. A vím jistě, že to nemělo nic společného s Kabanem a Kollontayem.\n\nJestli nechceš zmizet stejně jako tenhle chlap, vyhledej byt posledního šampiona. Věřím, že tam po něm něco zajímavého zůstalo. Šampion se stýkal s pašeráky v ubytovnách na Customs. Možná tam najdeš nějaké vodítko, jak se do bytu dostat.",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "Chceš se zeptat Refa sám? Dobře, rád jsem tě poznal.",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "Proti svědomí - Část 2",
"66058ccde8e4f17985230807 name": "Proti svědomí - Část 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "Takže říkáš, že jsi byl v bytě posledního šampiona? Tak dobře. Budu předstírat, že se to nikdy nestalo. Jen si pamatuj, že zvědavost zabila kočku. A posledního šampiona taky. Byl to dobrý chlap, měl jsem ho rád, ale vyměkl, ztratil nadhled.\n\nMěl by jsi víc trénovat, ne se potulovat po městě. Jinak začneš klesat na žebříčku.",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "Tady to máš! Čas by jsi měl věnovat zlepšování svých dovedností. Kdo ví, co se stane, když to neuděláš?",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "Mezi dvěma ohni",
"66058ccf06ef1d50a60c1f48 name": "Mezi dvěma ohni [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "Takže jsi viděl mrtvolu. Prohledal jsi ji? Prohledal jsi okolí? Jen poukazuji na to, že jsi slepý. Pokud vím, ten šampion si vedl deník. Jo, jako nějaký puberťák, ale to vlastně hraje ve tvůj prospěch.\n\nProč se tam nejdeš podívat znovu a nepodíváš se blíž? V tom deníku musí být víc informací o Refovi, nějaká špína na něj. Udělej to, jestli nechceš být v Aréně postradatelný.\n\nA ještě něco: pokud mi přineseš nějaké informace o Refovi, které budou hodny mého času, dobře ti zaplatím.",
"66058ccf06ef1d50a60c1f48 failMessageText": "Chceš zůstat pod Refovou sukní? Tak to udělej ty.",
"66058ccf06ef1d50a60c1f48 successMessageText": "Dobrá práce. Jsem rád, že jsi vzal osud do svých rukou.\n\nUjisti se, že o tom nic neřekneš Refovi.",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "Rozhodování, rozhodnutí",
"66058cd19f59e625462acc90 name": "Rozhodování, rozhodnutí [PVP ZONE]",
"66058cd19f59e625462acc90 description": "Slyšel jsem zvěsti... Velmi nepříjemné zvěsti. Říká se, že se snažíš rozkopat můj podnik.\n\nPodívej, známe se už nějakou dobu. Jsi pro mě jako bratr! Nedělej něco, čeho by jsi později litoval. Čím míň toho víš, tím líp spíš, slyšíš?\n\nDokud si tebou nebudu naprosto jistý, budou tě moji muži hlídat. Nechci, aby jsi dělal nějaké další kousky, šampióne. A jestli během svého malého rande se starým šampionem něco najdeš, přines mi to. Pak můžeme na tuhle malou šťastnou nehodu zapomenout.",
"66058cd19f59e625462acc90 failMessageText": "Přiložili ti pistoli k hlavě a všechno ti sebrali, co? Neměj mě za idiota! Kde je ten zasranej deník? Do hajzlu. To je fuk, vyřídím to později.",
"66058cd19f59e625462acc90 successMessageText": "Rozhodl jsi se správně. Nikdy jsem o tobě nepochyboval, bratře. Dobře, odteď už žádná legrace, slyšíš?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "To je velká věc! Doufám, že to nebylo příliš obtížné. Dobře, nech to tady. Děláš pro mě spoustu práce a já na to nezapomenu. Děkuji.",
"6744a964dc1b1e2ee134ffeb": "Předat předmět: Vojenská baterie 6-STEN-140-M",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "Lámu si kvůli tobě záda... Dobře, vyřeším to.",
"6744a728352b4da8e003eda9 declinePlayerMessage": "Ne, sakra. Jednou jsem se s takovou baterií musel plazit několik hodin. Je mi líto, ale tohle dělat nebudu.",
"6744a728352b4da8e003eda9 completePlayerMessage": "Tady jsou tvoje věci. Tohle je naposledy, co dělám doručovatele baterií. Jasně.",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "To je velká věc! Doufám, že to nebylo příliš obtížné. Dobře, nech to tady. Děláš pro mě spoustu práce a já na to nezapomenu. Děkuji.",
"6744a9dfef61d56e020b5c54": "Předat předmět: Vojenská baterie 6-STEN-140-M",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Lámu si kvůli tobě záda... Dobře, vyřeším to.",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "Ne, sakra. Jednou jsem se s takovou baterií musel plazit několik hodin. Je mi líto, ale tohle dělat nebudu.",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "Tady jsou tvoje věci. Tohle je naposledy, co dělám doručovatele baterií. Jasně.",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "Jsi si jistý, že je to ono? Dobře, cítím to, to je určitě ono! \n\nRagman mi včera vyprávěl o sklepích ve zdravotním středisku, dokonce jsem ho musel kurva ožrat, abychom konečně změnili téma. Každopádně pod zdravotním střediskem byl sovětský protiatomový kryt a Ref se tam chystal uspořádat novou arénu, pro VIP diváky. Myslím, že se to nějak týkalo i Tagilly... Ne, bylo to něco jiného...\n\nKaždopádně pro tuhle arénu Ref zorganizoval velkou akvizici vybavení od Ragmana, všechno už bylo skoro hotové. A pak náš hostitel najednou vycouval. Proč? Kdo ví.\n\nRagman byl opravdu naštvaný, že ten nápad padl. Ale část vybavení už dodal a určitě použil ty karty, které hledáš. Radši se ho zeptej sám, já si toho ze včerejška moc nepamatuju. Mimochodem, díky za pití.",
"67a0da26a3b8d254347b8634": "Předat láhev pálenky \"Divoký sekerník\"",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "Včera jste se nedostali k „testovacímu vzorku“. Tady Ragman mě požádal, abych ti ho dal, aby sis ho mohl otestovat sám.",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "Mimochodem, chtěl jsem se zeptat: slyšel jste něco o zařízení pod zdravotním střediskem a o přístupových kartách?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "Dárek s překvapením",
"67e993b1ac26bf29380a320b name": "Dárek s překvapením [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "Slyšel jsem, že ses zapletl do aféry s Fencem a Refem. Tak ses samozřejmě rozhodl přijít za mnou. Chceš si zahrávat s Refem? Hmm, to by pro mě bylo výhodné. Přines mi na něj špínu a já najdu způsob, jak ji využít.",
"67e993b1ac26bf29380a320b failMessageText": "Tak proč za mnou vůbec chodíš, když ty informace dáš jednomu z těch dvou?",
"67e993b1ac26bf29380a320b successMessageText": "Jsem rád, že chápeš, s kým je výhodnější se přátelit.",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "Získáš informace.",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "Tady je vše, co jsem našel o Refovi.",
"67e993f5ed537409f009da75 name": "Odložená odměna",
"67e993f5ed537409f009da75 name": "Odložená odměna [PVP ZONE]",
"67e993f5ed537409f009da75 description": "No, s důkazy jsi to podělal velmi trapným způsobem, ale jistě, dodržím slovo. Přinesu ti ten tvůj zasranej kontejner. Ale teď tě požádám o něco jiného, když už se to tak zvrtlo.",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "Dobře, zasloužíš si odměnu. Ale věz, že už si nenechám líbit žádné tvoje kecy. Jestli začneš zase kopat, skončíš jako ten starý šampion.",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Snadné peníze - Část 1 [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Čau kámo. Mám pro tebe práci. Jeden můj starej známý hledá ty správný lidi pro svůj byznys. Neznám všechny detaily, jen tu první fázi náboru, tak říkajíc. Vidím, že máš zájem.\n\nSlyšel jsi už něco o Aréně? Musíš po Tarkovu rozvěsit letáky. Něco jako \"přijďte se podívat\", takový věci, chápeš. Hele, i vážný věci začínají malýma krůčkama! Mám pro tebe pár plakátů, ale jestli je ztratíš, je to tvůj problém, jasný? Přines je do pevnosti Scavů u terminálu na Customs. Tak jdi na to.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "Všechno hotový? Předám jim to. Tady jsou mezitím nějaký mňaminky.",
"6834145ebc1f443d7603c8ab": "Položit plakát \"Bison vs Undertaker\" v obytných prostorách na Scavovské základně na Custom",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Snadné peníze - Část 2 [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "Ahoj, šampióne! Jeden můj přítel ti dal malý zkušební úkol. Teď jsem se rozhodl, že se s tebou setkám osobně. Lidé mi říkají Ref. Hostování v Aréně a velké peníze, ha!\n\nOčividně ti nevadí vydělávat peníze a já zoufale potřebuji nové zaměstnance. Obchod vzkvétá a já mám málo lidí. Rozšiřujeme se!\n\nBrzy máme v plánu další zápas. Jak se říkalo ve starém Římě, \"lid si žádá chléb a cirkusy\". To druhé je v pořádku, ale chléb nestíhá. Drobné narušení dodávek, s tím si nedělej starosti. Jen mi přines nějaké jídlo a chlast pro diváky.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Všechno, co jsi přinesl, už bylo posláno na svá místa. Dobrá práce.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Předat předmět nalezený v raidu: Láhev piva Pevko Light",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "Vyrovnávání - Část 1 [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "Vyrovnávání - Část 2 [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Překvapení [PVE ZONE]",
"68341b407559f4e6d50bc0ce description": "Přišel jsem na skvělý nápad, jak Arénu ještě vylepšit. A potřebuji tvoji pomoc.\n\nPotřebuji sehnat nějaké balistické pláty pro jednoho chlápka. Je to častý účastník, takže je na čase mu dát vylepšení, aby nadchl publikum. To je ta věc s představeními, když včas nepřidáš dřevo, oheň uhasne.\n\nTak a teď mi běž sehnat nějaké balistické pláty.\n\nDav bude pištět, až ho uvidí!",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "Přesně to jsem potřeboval! Už toho moc nezbývá. Všichni budou nadšení, až uvidí výsledky, slibuji! Tady je helma jako odměna. Její poslední majitel má teď lepší, ha!",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Create a Distraction - Part 1 [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "Ha, you should have seen the chaos when they found the bricks! What a show! It's a damn shame we didn't film the whole thing... You did a good job. Here's your reward.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Odvedení pozornosti - Část 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "Nevíš, na koho máš střílet?! Měl jsem v tebe tak velké naděje.",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "Do velkých výšin! - Část 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "Ani na vteřinu jsem o tobě nepochyboval, bratře! Ale nezapomeň, že jsme tu proto, abychom lidi bavili. Potřebujeme větší show! Někdy to vypadá, jako bys jen střílel do plechovek, víš?",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "Do velkých výšin! - Část 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "Odteď jsi pod mými křídly, bratře. Postarám se o to, aby jsi dělal dobré pokroky, ale budeš muset častěji zvednout zadek.\n\nZačneme se základy. Aréna je v Tarkově, ale největší sponzoři jsou v zámoří. Sledují každý zápas, sázejí, házejí peníze na favority. A ty potřebuješ, aby se o to někteří z těch velkých lidí zajímali. Získej jejich pozornost, ukaž jim, že za to stojíš. Udělej si jméno. Jedno vítězství k tomu samo o sobě nestačí. Ukaž jim, že umíš předvést strhující výkon!",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "Vidím, že děláš pokroky! Začíná se o tobě mluvit i v zámoří. Lidé se o tebe zajímají. To je znamení, že to děláš správně!",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "Do velkých výšin! - Část 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "Vedeš si skvěle! Ale je příliš brzo na to, aby jsi přestal. Častěji se blýskni, zapůsob na publikum. Vynikni. Staň se tím, o kom se mluví, tím, za kým se chodí. Pak přijdou peníze a pak další mňaminky: auta, holky... I když na to poslední je Tarkov trochu krátký. \n\nKaždopádně Aréna je teď skvělá kariérní příležitost, ha!",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "A teď jsi o krok blíže k velké lize! Respekt, bratře.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "Do velkých výšin! - Část 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "Jaká je nálada? Jsi připraven na bitvu? Jsi připraven znovu zazářit v Aréně? Jsi připraven rozbít pár sráčů? Šance jsou stále vyrovnané, tak nezklam publikum!\n\nKdyž už jsme u toho. Máš nějaké peníze? Musíš si vsadit sám na sebe a pak šestkrát vyhrát. Vyděláš hromadu peněz a budeš slavný. Přines peníze, já všechno zařídím. Jen pozor: když pětkrát prohraješ, začínáš znovu.",
"683421515619c8e2a9031511 failMessageText": "Ou chlape, málem se ti to povedlo. Zkus to znovu, diváci se stále zdají být na tvé straně.",
"683421515619c8e2a9031511 successMessageText": "Tady je tvoje výplata. Hned jsem z ní odečetl všechny své služby: podplácení soupeřů, poplatky a tak. Snad sis nemyslel, že pracuju zadarmo?",
"683421515619c8e2a9031514": "Předat rubly z EFT",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Podmínka selhání: Prohrát 5 zápasů",
"683421515619c8e2a903151b": "Podmínka selhání: Prohrát 5 zápasů",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "Do velkých výšin! - Část 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "Mám dobrou zprávu! Vlastně vynikající zprávu! Doufám, že už máš vybraný malý byt v elitní tarkovské čtvrti, protože za tyhle peníze ho budeš mít brzy! Dělám si legraci. Všechny domy v těch čtvrtích se stejně brzy zhroutí.\n\nKaždopádně se o tebe zajímá několik velmi vlivných lidí zpoza hranic. Mocní a bohatí. Nemůžu ti říct jejich jména, je to obchodní tajemství a já neporuším, co jsem podepsal. Takže tihle lidé jsou připraveni vzít tě pod svá křídla a vydatně tě sponzorovat, ale nejdřív chtějí záruky.\n\nMusíš se stát šampionem. Létat a vznášet se vysoko nad ostatními. Budeš muset trávit víc času v Aréně. Vidím ti na očích, že jsi připraven.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "Jsi opravdu dobrý. Zajímá se o tebe jeden velmi slavný Francouz, jehož jméno ti kvůli soukromí neřeknu. Mazaný jako peklo, ale nabízí dobré peníze. Už jsem ti zařídil sponzoring.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Proti svědomí - Část 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Ahoj. Slyšel jsem, že teď pracuješ pro Refa. Nějakou dobu jsem tě sledoval.\n\nZnal jsem člověka, který se zapletl stejně jako ty. Nějakou dobu byl Refovým předchozím šampionem a pak z ničeho nic zmizel. A vím jistě, že to nemělo nic společného s Kabanem a Kollontayem.\n\nJestli nechceš zmizet stejně jako tenhle chlap, vyhledej byt posledního šampiona. Věřím, že tam po něm něco zajímavého zůstalo. Šampion se stýkal s pašeráky v ubytovnách na Customs. Možná tam najdeš nějaké vodítko, jak se do bytu dostat.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "Chceš se zeptat Refa sám? Dobře, rád jsem tě poznal.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Zjistit, co se stalo se šampionem",
"6834233fecd5cf3a440d8564": "Přežít a opustit lokaci",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Proti svědomí - Část 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "Takže říkáš, že jsi byl v bytě posledního šampiona? Tak dobře. Budu předstírat, že se to nikdy nestalo. Jen si pamatuj, že zvědavost zabila kočku. A posledního šampiona taky. Byl to dobrý chlap, měl jsem ho rád, ale vyměkl, ztratil nadhled.\n\nMěl by jsi víc trénovat, ne se potulovat po městě. Jinak začneš klesat na žebříčku.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "Tady to máš! Čas by jsi měl věnovat zlepšování svých dovedností. Kdo ví, co se stane, když to neuděláš?",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Rozhodování, rozhodnutí [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "Slyšel jsem zvěsti... Velmi nepříjemné zvěsti. Říká se, že se snažíš rozkopat můj podnik.\n\nPodívej, známe se už nějakou dobu. Jsi pro mě jako bratr! Nedělej něco, čeho by jsi později litoval. Čím míň toho víš, tím líp spíš, slyšíš?\n\nDokud si tebou nebudu naprosto jistý, budou tě moji muži hlídat. Nechci, aby jsi dělal nějaké další kousky, šampióne. A jestli během svého malého rande se starým šampionem něco najdeš, přines mi to. Pak můžeme na tuhle malou šťastnou nehodu zapomenout.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "Rozhodl jsi se správně. Nikdy jsem o tobě nepochyboval, bratře. Dobře, odteď už žádná legrace, slyšíš?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Předat nalezené informace",
"6834254f2f0e2a7eb90b62f4": "Podmínka selhání: Donést informace Fencovi",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Mezi dvěma ohni [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "Takže jsi viděl mrtvolu. Prohledal jsi ji? Prohledal jsi okolí? Jen poukazuji na to, že jsi slepý. Pokud vím, ten šampion si vedl deník. Jo, jako nějaký puberťák, ale to vlastně hraje ve tvůj prospěch.\n\nProč se tam nejdeš podívat znovu a nepodíváš se blíž? V tom deníku musí být víc informací o Refovi, nějaká špína na něj. Udělej to, jestli nechceš být v Aréně postradatelný.\n\nA ještě něco: pokud mi přineseš nějaké informace o Refovi, které budou hodny mého času, dobře ti zaplatím.",
"683425dd8f5b18d29a05d9d1 failMessageText": "Chceš zůstat pod Refovou sukní? Tak to udělej ty.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Najít úkryt starého šampiona",
"683425dd8f5b18d29a05d9d4": "Vrátit se do úkrytu starého šampiona na Customs",
"683425dd8f5b18d29a05d9d6": "Najít a získat kompromitující informace na Refa",
"683425dd8f5b18d29a05d9d8": "Předat nalezené informace",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift [PVE ZONE]",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward [PVE ZONE]",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "Hand over the item: Lega Medal",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "Zájmový klub",
"684009026ceedc792c09b2a7 description": "Výborně, čekal jsem na tebe. Mám ve Státech přítele, velmi zkušeného odborníka na zbraně. Je posedlý ruskými střelnými zbraněmi a už několik let pracuje na svém vlastním projektu, který se jmenuje AK-50. Vždycky se mu to líbilo. Myslím, že jsi ještě nikdy neviděl AK, které by střílelo ráží 50mm. Tedy tu z NATO.\n\nTakže projekt je konečně hotový a on mi poslal zkušební vzorek. Tak těžká a specializovaná puška je příliš riskantní na to, aby se dovážela v jednom kuse, takže jsme balíček rozdělili na několik částí. No hádej co, v Tarkově to nešlo podle plánu. Šok, já vím.\n\nHlavní část se dodává jako jeden díl a byl zabaven ve vodák Atlantiku. Nicméně mám jeho plán, takže potřebuji, abys ho použil a postavil mi nový. V našich podmínkách to rozhodně nebude snadné. Ale aspoň budeš mít kopii plánu pro pozdější použití.\n\nRukojeť se dodává s plynovou trubící a tu nějak zachytili Skierovi zločinci. Sestavení, montáž a testování této části trvalo dva roky a náklady na vývoj a prototypy už přesáhly několik milionů.\n\nKryt závěru byl zachycen na jednom z kontrolních stanovišť už v Tarkově. Nevím, které, budeš je muset prohledat všechny. Ale hlaveň je určitě na vojenské základně. Glukhar osobně zorganizoval přepadení mého konvoje a zřejmě věděl o této zásilce. Budeš o ni muset bojovat, nebo doufat v nějaký boží zásah.\n\nAž posbíráš všechny součástky, nech je v boudě u vysílací věže poblíž čerpací stanice na Customs. Požádám svou posádku, aby je odtamtud dopravila, a poté budu moci díly vyrobit sám. A samozřejmě nezapomenu na tvou pomoc.",
"684009026ceedc792c09b2a7 failMessageText": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Říkáš, že je vše čistý? Dobrá práce, vojáku.",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "Výš a stále výš",
"6842c27a38482d35ac0bd847 description": "Získat 4. úroveň Prestiže",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
File diff suppressed because it is too large Load Diff
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Pieza superior de Scav 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Pantalón deportivo Adik",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "Ropa deportiva",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Chaleco portaplacas Crye Precision AVS (Edición Tagilla)",
"609e860ebd219504d8507525 ShortName": "AVS ET",
"609e860ebd219504d8507525 Description": "El desgastado chaleco portaplacas de Tagilla, basado en el sistema modular AVS de Crye Precision. Equipado con una placa frontal y con tres portacargadores. Y eso es todo... nada más y nada menos...",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "Mira réflex SIG Sauer ROMEO8T",
"60a23797a37c940de7062d02 ShortName": "ROMEO8T",
"60a23797a37c940de7062d02 Description": "Una mira réflex ROMEO8T, diseñada para disparos de precisión con fusiles deportivos modernos y escopetas. Fabricada por SIG Sauer.",
@@ -15116,6 +15122,9 @@
"683ed6ccd9a096739b0c9228 Name": "Guardamano con bloque de gases para AK-50",
"683ed6ccd9a096739b0c9228 ShortName": "G. AK-50",
"683ed6ccd9a096739b0c9228 Description": "Un guardamano M-LOK con bloque de gases y riel para el fusil de francotirador AK-50.",
"68406efe068a2d99940c1ce3 Name": "Unidad SSD",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "Una unidad de estado sólido (Solid State Drive). Se utiliza para almacenar información, con una mejora en el desempeño de lectura y escritura.",
"68418091b5b0c9e4c60f0e7a Name": "Placa de identificación USEC",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "Una placa de identificación militar especial de acero inoxidable que sirve para identificar rápidamente a los heridos y los fallecidos en combate. Tiene un tono dorado inusual.",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "Camiseta Grenadier",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Camiseta de mercancía",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "Ex-V - Carretera a la Base Militar",
" Voip/DisabledForOffline": "El VoIP no está disponible en el modo Offline.",
" kg": " kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "La resolución ha cambiado. ¿Quieres mantener la resolución actual?",
"Resource": "RECURSOS",
"RestSpace": "ÁREA DE DESCANSO",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "Tasa de devolución:",
"Revert": "REVERTIR",
"Revert your settings to default?": "¿Estás seguro de querer restablecer a la configuración por defecto?",
@@ -18970,6 +19015,21 @@
"TeamTab": "Grupos",
"Teamkills": "Aliados eliminados",
"Terrain quality:": "Calidad del Terreno:",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "Los cambios a la calidad de las texturas se aplicarán al reiniciar el juego.",
"Texture quality:": "Calidad de Texturas:",
"That item cannot be insured": "Ese objeto no puede ser asegurado",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "Lo haré. <color=grey><i>(Aceptar misión \"{0}\")</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "Listo. <color=grey><i>(Finalizar misión \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "Encontré esto. <color=grey><i>(Entregar \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "Toma. <color=grey><i>(Entregar objeto \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "Te puedo dejar en estos lugares. Elige uno.",
"Trading/Dialog/PlayerTaxi/Name": "Dar una vuelta",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Muy bien, destino: el Cine Rodina. ¿El precio te parece bien?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "EQUIPO AMARILLO",
"starvDeaths": "Muertes por inanición",
"stationHeals": "Heridas tratadas",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "Sótano del Contrabandista",
"suicides": "Suicidios",
"survClass": "Clase de sobreviviente",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "Dinero Fácil - Parte 1",
"66058cb22cee99303f1ba067 name": "Dinero Fácil - Parte 1 [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "Eh amigo, qué pedo. Tengo un trabajo para ti. Un viejo amigo mío está buscando a las personas adecuadas para su negocio. No conozco todos los detalles, solo la primera etapa del reclutamiento, por decirlo así. Veo que estás interesado.\n\n¿Has escuchado algo sobre la Arena? Debes poner pósteres alrededor de Tarkov. En plan, \"ven a ver\", y pendejadas así, tú sabes. ¡Oye, los grandes negocios siempre empiezan con cosas pequeñas! Tengo un par de pósteres listos para ti, pero si los pierdes es tu pinche pedo, ¿Entendido? Llévalos a la fortaleza de los Scavs en Aduanas. Ve ándale.",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "¿Todo listo? Entonces les diré. Por mientras, toma estas cositas.",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "Dinero Fácil - Parte 2",
"66058cb5ae4719735349b9e8 name": "Dinero Fácil - Parte 2 [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "¡Hola campeón! Un amigo mío te dio una pequeña misión de prueba. Así que he decidido conocerte en persona. La gente me llama Ref. Soy el Anfitrión de la Arena y me gusta ganar mucho dinero, ¡Ja-ja!\n\nClaramente, a ti no te caería nada mal ganar algo de dinero y yo necesito personal nuevo urgentemente. El negocio está en auge y me falta personal. ¡Nos estamos expandiendo!\n\nTenemos planeado otro combate pronto. Como decían en la antigua Roma, \"el pueblo quiere pan y circo\". Vamos bien con lo último, pero se nos está acabando el pan. Es solo una pequeña interrupción de suministros, no te preocupes. Pero necesito que me traigas un poco de comida y alcohol para el público.",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "Todo lo que has traído ya fue enviado a los asientos. Bien hecho.",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "Balanceo - Parte 1",
"66058cb7c7f3584787181476 name": "Balanceo - Parte 1 [PVP ZONE]",
"66058cb7c7f3584787181476 description": "Hiciste un gran trabajo en mis encargos. También te busqué en mi base de datos... Solo como precaución. Nunca contrato a un completo desconocido, ¿Me entiendes, hermano? ¡Te estoy ascendiendo a evaluador! Estarás probando equipamiento para la Arena.\n\nAcabo de recibir un gran lote de fusiles bullpup a un precio increíble. Ve y pruébalos contra algunos vagabundos. Después de eso, decidiré si estos fusiles irán a mis hombres en el Equipo de Limpieza o a los gladiadores.",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "Nada mal ¿Eh? La verdad es que me gustan mucho las armas bullpup. Obviamente, el AUG es difícil de darle mantenimiento, el disparador tiene un mecanismo raro, cuesta acostumbrarse a él, además de que es fácil olvidarse del puerto de eyección. Ciertamente, no es un arma para aficionados. ¡Pero se siente tan bien! Será mejor no dárselos a los del Equipo de Limpieza.\n\nEn fin, aquí está tu recompensa.",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "Balanceo - Parte 2",
"66058cb9e8e4f17985230805 name": "Balanceo - Parte 2 [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "Bien, ahora hay que probar un chaleco balístico. Esta es solo para el Equipo de Limpieza. Veamos qué tanto aguanta contra mercenarios de verdad. Intenta matar unos cuantos PMC mientras llevas puesto este chaleco PACA. Después, veré qué más se me ocurre.",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "¿Estás vivo? ¡Bien! ¿Qué? ¿El chaleco es una mierda y no aguanta nada? Chingado, qué lástima. Será demasiado débil para el Equipo de Limpieza, así que tendré que buscar un modelo mejor.",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "Sorpresa",
"66058cbb06ef1d50a60c1f46 name": "Sorpresa [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "Se me ocurrió una gran idea para mejorar aún más la Arena. Y necesito tu ayuda.\n\nNecesito encontrar algunas placas balísticas para alguien. Es un artista frecuente, por lo que es hora de actualizarlo para emocionar al público. Ese es el detalle con los espectáculos, si no echas leña a tiempo, se apaga el fuego.\n\nBueno, ahora ve y búscame unas placas balísticas.\n\n¡El público gritará cuando lo vean!",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "¡Justo lo que necesitaba! No hace falta más. Todos estarán impactados cuando vean los resultados, ¡Te lo prometo! Aquí tienes un casco como recompensa. Su último dueño ahora tiene uno mejor, ¡Ja!",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "Crea Una Distracción - Parte 1",
"66058cbd9f59e625462acc8e name": "Crea Una Distracción - Parte 1 [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "Mira, estoy comenzando a sentirte como parte de la familia. ¡Como un hermano! Creo que puedo conseguirte un trabajo serio.\n\nTengo algunos cofundadores en la Arena, son Kaban y Kollontay, tal vez los conozcas. Pensé que eran gente buena onda, pero ahora decidieron jugar a la política. Quieren poner a su campeón en la Arena, ¿Te lo imaginas? Y tú sabes que un buen campeón genera mucho dinero. Se necesitará de mucho tiempo y dinero para reconstruir el negocio.\n\nNecesitamos asustar a estos tipos para que se den cuenta de que se están pasando de la raya. Toma algunas cargas explosivas y colócalas dentro de la cafetería en el centro de la ciudad. Sin detonadores. No vamos a estallar nada, pero haremos que parezca como algo muy grave. Que corran por allí con el culo en la mano.",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "¡Ja, deberías de haber visto el caos cuando encontraron las cargas! ¡Todo un show! Es una lástima que no lo hubiéramos grabado todo... Hiciste un buen trabajo. Aquí está tu recompensa.",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "Crea Una Distracción - Parte 2",
"66058cbf2f19c31a5a1337ec name": "Crea Una Distracción - Parte 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Bueno, Kaban y Kollontay se cagaron, pero no es suficiente. Me gustaría acabar con ellos. No tienes que ayudarme con eso, claro, pero...\n\nYa tengo un plan. Tienes que ir a sus guaridas y dispararle a sus guardaespaldas, o como se llamen. Todos ahí dentro son personas de confianza para ellos dos, así que son los blancos perfectos. ¡PERO! ¡Asegúrate de que Kaban y Kollontay salgan ilesos!",
"66058cbf2f19c31a5a1337ec failMessageText": "¡¿Qué no ves a quién le disparas?! Tenía tantas esperanzas en ti...",
"66058cbf2f19c31a5a1337ec successMessageText": "¡Buen trabajo! Kaban y Kollontay están haciendo todo un alboroto. Creo que pronto vendrán conmigo para tratar de dejar todo este negocio.\n\nAquí tienes tu bien merecida recompensa.",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "¡Hacia Grandes Alturas! - Parte 1",
"66058cc1da30b620a34e6e86 name": "¡Hacia Grandes Alturas! - Parte 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "Muy bien, terminaste tu primera evaluación. Creo que es hora de que surja un nuevo campeón en la Arena. Y vas a ser tú. Con tu consentimiento, por supuesto. Aquí estamos en contra de la explotación laboral, ¡Ja ja!\n\nPuedo ayudarte a alcanzar fama y riquezas más allá de tus sueños más locos. Solo tienes que aceptar mi oferta. Pero, ya sabes, las acciones siempre valen más que las palabras. Así que ve a la Arena y gana. Solo así sabré que estás listo para seguir adelante.",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "¡Nunca dudé de ti ni por un segundo, hermano! Pero recuerda, estamos aquí para entretener al público. ¡Necesitamos un espectáculo más grande! A veces parece como si solo estuvieran disparándole a un montón de latas, ¿Me entiendes?",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "¡Hacia Grandes Alturas! - Parte 2",
"66058cc208308761cf390993 name": "¡Hacia Grandes Alturas! - Parte 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "Hermano, de ahora en adelante estarás bajo mi protección. Me aseguraré de que progreses bien, pero tendrás que mover el culo más seguido.\n\nEmpecemos con lo básico. La Arena está en Tarkov, pero los patrocinadores más importantes están en el extranjero. Miran todas las partidas, hacen apuestas y avientan dinero a los favoritos. Necesitas que algunos de esos peces gordos se interesen en ti. Llama su atención, muéstrales que eres digno. Gánate un nombre. Una sola victoria no es suficiente para lograrlo. ¡Muéstrales que puedes realizar una actuación emocionante!",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "¡Veo que estás progresando! Están comenzando a hablar de ti en el extranjero. La gente está interesada. ¡Es una señal de que vas por buen camino!",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "¡Hacia Grandes Alturas! - Parte 3",
"66058cc5bb83da7ba474aba9 name": "¡Hacia Grandes Alturas! - Parte 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "¡Vas muy bien! Pero aún es muy pronto como para renunciar. Saca a lucir tu rostro con mayor frecuencia, impresiona a la audiencia. Debes sobresalir. Conviértete en la persona de quien todos hablan, en aquel a quien vienen a ver. Luego llegará el dinero, y luego otros beneficios: autos, chicas... Aunque a Tarkov le falta un poco de lo último.\n\nEn fin, en estos momentos, la Arena es una magnífica oportunidad profesional, ¡Ja!",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "¡Ahora estás un paso más cerca de las grandes ligas! Respeto, hermano.",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "¡Hacia Grandes Alturas! - Parte 4",
"66058cc72cee99303f1ba069 name": "¡Hacia Grandes Alturas! - Parte 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "¿Cómo está el ánimo? ¿Listo para la batalla? ¿Listo para brillar en la Arena una vez más? ¿Listo para destrozar a unos cuantos hijos de puta? Las probabilidades aún están en tu contra, ¡Así que no decepciones a la audiencia!\n\nY ya que estamos. ¿Tienes algo de dinero? Debes apostar por ti mismo y luego ganar seis veces. Ganarás toneladas de dinero y serás famoso. Trae el dinero, yo organizaré lo demás. Solamente ten cuidado: si pierdes cinco veces, empiezas de nuevo.",
"66058cc72cee99303f1ba069 failMessageText": "Ahhh, hombre, casi lo logras. Inténtalo otra vez, parece que la audiencia aún está a tu favor.",
"66058cc72cee99303f1ba069 successMessageText": "Aquí está tu cheque. Deduje todos mis servicios de ahí: sobornos a oponentes, honorarios y todo eso. ¿Qué? ¿Pensaste que trabajo gratis?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "¡Hacia Grandes Alturas! - Parte 5",
"66058cc9ae4719735349b9ea name": "¡Hacia Grandes Alturas! - Parte 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "¡Tengo buenas noticias! ¡Más bien, son excelentes noticias! Espero que hayas elegido un pequeño departamento en la colonia rica de Tarkov, ¡Porque pronto lo tendrás junto con todo este dinero! Es broma. De todos modos, todas las casas de esos vecindarios se derrumbarán en poco tiempo.\n\nEn fin, algunas personas muy poderosas del otro lado de la frontera están interesadas en ti. Poderosas y de mucho dinero. No puedo decirte sus nombres, es secreto empresarial y no quiero infringir los acuerdos que firmé. Entonces, estas personas están listas para tomarte bajo su protección y patrocinarte a lo grande, pero primero quieren garantías.\n\nNecesitas convertirte en el campeón. Vuela alto, vuela por encima del resto. Tendrás que pasar más tiempo en la Arena. Puedo ver en tus ojos que estás listo.",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "Eres muy bueno. Un francés muy famoso - no te diré su nombre por razones de privacidad - está interesado en ti. Tiene un ceceo de la fregada, pero ofrece buen dinero. Ya hice los arreglos para tu patrocinio.",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "Contra la Conciencia - Parte 1",
"66058ccbc7f3584787181478 name": "Contra la Conciencia - Parte 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "Hola. Escuché que ahora trabajas para Ref. Te he estado siguiendo de cerca por un tiempo.\n\nConocí a un hombre que también se enredó con Ref, al igual que tú. Durante un tiempo, él fue el antiguo campeón de Ref y luego, de repente, desapareció. Y estoy seguro de que esto no tuvo nada que ver con Kaban y Kollontay.\n\nSi no quieres desaparecer igual que ese tipo, busca el departamento del último campeón. Creo que aún queda algo interesante por ahí. El campeón solía pasar el rato con los contrabandistas en los dormitorios de Aduanas. Quizás encuentres algunas pistas sobre cómo entrar a la habitación.",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "¿Quieres preguntarle a Ref tú mismo? Bueno, fue un placer conocerte.",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "Contra la Conciencia - Parte 2",
"66058ccde8e4f17985230807 name": "Contra la Conciencia - Parte 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "¿Me estás diciendo que fuiste al dormitorio del último campeón? Muy bien... voy a fingir que eso nunca pasó. Solo recuerda, la curiosidad mató al gato... y también al último campeón. Era un buen tipo, me caía bien, pero se ablandó, perdió el toque.\n\nDeberías practicar más, no andar deambulando por la ciudad. De lo contrario, tu puntuación comenzará a bajar.",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "¡Eso es! Debes dedicarle más tiempo a mejorar tus habilidades. Quién sabe qué podría pasar si no lo haces…",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "Entre Dos Fuegos",
"66058ccf06ef1d50a60c1f48 name": "Entre Dos Fuegos [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "Así que viste un cadáver. ¿Lo registraste? ¿Revisaste alrededor? Solamente estoy señalando que estás ciego. El campeón, hasta donde yo sé, traía un diario. Sí, como un adolescente, pero la verdad es que esto juega a tu favor.\n\n¿Por qué no mejor regresas y miras más de cerca? Tiene que haber más información sobre Ref en ese diario, algo sucio sobre él. Hazlo si es que quieres dejar de ser prescindible en la Arena.\n\nY una cosa más: si me traes cualquier información sobre Ref que valga la pena, te pagaré bien.",
"66058ccf06ef1d50a60c1f48 failMessageText": "¿Quieres quedarte bajo la falda de Ref? Bueno, haz lo que quieras.",
"66058ccf06ef1d50a60c1f48 successMessageText": "Bien hecho. Me alegra que hayas tenido los huevos para tomar el control de tu destino.\n\nAsegúrese de no decirle nada de esto a Ref.",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "Decisiones, Decisiones",
"66058cd19f59e625462acc90 name": "Decisiones, Decisiones [PVP ZONE]",
"66058cd19f59e625462acc90 description": "He estado escuchando rumores... Rumores muy desagradables. Dicen que intentas excavar en mis asuntos.\n\nMira, nos conocemos desde hace tiempo. ¡Eres como un hermano para mí! No hagas algo de lo que te vayas a arrepentir después. Cuanto menos sepas, dormirás mejor, ¿Escuchaste?\n\nHasta que tenga absoluta confianza en ti, mis hombres estarán vigilándote. No quiero que hagas ninguna travesura, campeón. Y si encuentras algo durante tu pequeña cita con el antiguo campeón, tráemelo. Solo entonces podremos olvidarnos de este pequeño y chistoso accidente.",
"66058cd19f59e625462acc90 failMessageText": "¿Te apuntaron con una pistola en la cabeza y te quitaron todo, eh? ¡No intentes verme la cara de pendejo! ¡¿Dónde está el puto diario?! Puta madre. Como sea, me encargaré de eso más tarde.",
"66058cd19f59e625462acc90 successMessageText": "Tomaste la decisión correcta. Nunca dudé de ti, hermano. Muy bien, no quiero más chistecitos como estos de ahora en adelante, ¿Me entendiste?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "¡Esa cosa es enorme! Espero que no haya sido demasiada molestia. Bueno, déjala aquí. Estás haciendo un gran trabajo por mí y no lo olvidaré. Gracias.",
"6744a964dc1b1e2ee134ffeb": "Entrega el objeto: Batería militar 6-STEN-140-M",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "Me estoy rompiendo la espalda por ti... Está bien, me las arreglaré.",
"6744a728352b4da8e003eda9 declinePlayerMessage": "Mmm... no. Una vez tuve que arrastrarme durante horas con una de esas baterías. Perdón, pero no voy a hacerlo.",
"6744a728352b4da8e003eda9 completePlayerMessage": "Aquí está lo que querías. Te juro que esta es la última vez que hago una entrega de batería de tanque.",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "¡Esa cosa es enorme! Espero que no haya sido demasiada molestia. Bueno, déjala aquí. Estás haciendo un gran trabajo por mí y no lo olvidaré. Gracias.",
"6744a9dfef61d56e020b5c54": "Entrega el objeto: Batería militar 6-STEN-140-M",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Me rompo la espalda por ti... Está bien, me las arreglaré.",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "Mmm... no. Una vez tuve que arrastrarme durante horas con una de esas baterías. Perdón, pero no voy a hacerlo.",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "Aquí está lo que querías. Te juro que esta es la última vez que hago una entrega de batería de tanque.",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "¿Seguro que es esto? ¡Bien, puedo olerlo, sin duda es ese!\n\nRagman me habló ayer del sótano del Sanatorio, incluso tuve que emborracharlo como la chingada para que pudiéramos cambiar de tema. En fin, había un refugio antiaéreo soviético debajo del Sanatorio, y Ref iba a organizar una nueva arena allí, para el público VIP. Creo que también involucraba a Tagilla de alguna manera... No, era algo más...\n\nEn fin, para esta arena, Ref organizó una gran adquisición de equipamiento de Ragman, todo estaba casi listo. Y entonces nuestro anfitrión se echó para atrás de repente. ¿Por qué? Sabrá la chingada.\n\nRagman estaba muy molesto porque la idea se había ido a la mierda. Pero ya había entregado parte del equipamiento, y definitivamente usó esas tarjetas que buscas. Mejor pregúntale tú mismo, no recuerdo mucho de lo de ayer. Por cierto, gracias por la bebida.",
"67a0da26a3b8d254347b8634": "Entrega una Botella de licor casero Fierce Hatchling",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "No llegaste a la \"muestra de prueba\" ayer. Toma, Ragman me pidió que te la diera para que la probaras tú mismo.",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "Por cierto, quería preguntarte: ¿Has escuchado algo sobre las instalaciones que hay debajo del Sanatorio y las tarjetas para acceder a ellas?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "Regalo Sorpresa",
"67e993b1ac26bf29380a320b name": "Regalo Sorpresa [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "Escuché que te involucraste en este asunto con Fence y Ref. Así que, por supuesto, decidiste venir a mí. ¿Quieres molestar a Ref? Mmm, eso sería beneficioso para mí. Tráeme esas porquerías sobre él y encontraré la manera de usarlas.",
"67e993b1ac26bf29380a320b failMessageText": "¿Y por qué te molestarías en venir conmigo en primer lugar si solo ibas a darle la información a uno de esos dos?",
"67e993b1ac26bf29380a320b successMessageText": "Me alegro de que entiendes con quién resulta más ventajoso hacer una amistad.",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "Recibirás la información que pides.",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "Aquí está todo lo que pude encontrar sobre Ref.",
"67e993f5ed537409f009da75 name": "Recompensa Postergada",
"67e993f5ed537409f009da75 name": "Recompensa Postergada [PVP ZONE]",
"67e993f5ed537409f009da75 description": "Bueno, la cagaste de una forma descomunalmente vergonzosa con la evidencia, pero claro, cumpliré con mi palabra. Te conseguiré tu puto contenedor. Pero ahora te voy a pedir algo más, ya que la cosa se puso muy fea.",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "Muy bien, te ganaste tu recompensa. Pero será mejor que te quede muy claro que no voy a aguantar tus pendejadas. Si vuelves a husmear donde no te incumbe, terminarás como ese viejo campeón.",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Dinero Fácil - Parte 1 [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Eh amigo, qué pedo. Tengo un trabajo para ti. Un viejo amigo mío está buscando a las personas adecuadas para su negocio. No conozco todos los detalles, solo la primera etapa del reclutamiento, por decirlo así. Veo que estás interesado.\n\n¿Has escuchado algo sobre la Arena? Debes poner pósteres alrededor de Tarkov. En plan, \"ven a ver\", y pendejadas así, tú sabes. ¡Oye, los grandes negocios siempre empiezan con cosas pequeñas! Tengo un par de pósteres listos para ti, pero si los pierdes es tu pinche pedo, ¿Entendido? Llévalos a la fortaleza de los Scavs en Aduanas. Ve ándale.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "¿Todo listo? Entonces les diré. Por mientras, toma estas cositas.",
"6834145ebc1f443d7603c8ab": "Coloca el paquete de pósteres de Bison VS Undertaker en el alojamiento de la base Scav en Aduanas",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Dinero Fácil - Parte 2 [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "¡Hola campeón! Un amigo mío te dio una pequeña misión de prueba. Así que he decidido conocerte en persona. La gente me llama Ref. Soy el Anfitrión de la Arena y me gusta ganar mucho dinero, ¡Ja-ja!\n\nClaramente, a ti no te caería nada mal ganar algo de dinero y yo necesito personal nuevo urgentemente. El negocio está en auge y me falta personal. ¡Nos estamos expandiendo!\n\nTenemos planeado otro combate pronto. Como decían en la antigua Roma, \"el pueblo quiere pan y circo\". Vamos bien con lo último, pero se nos está acabando el pan. Es solo una pequeña interrupción de suministros, no te preocupes. Pero necesito que me traigas un poco de comida y alcohol para el público.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Todo lo que has traído ya fue enviado a los asientos. Bien hecho.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Entrega el objeto encontrado en incursión: Botella de cerveza Pevko Light",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "Balanceo - Parte 1 [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "Balanceo - Parte 2 [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Sorpresa",
"68341b407559f4e6d50bc0ce description": "Se me ocurrió una gran idea para mejorar aún más la Arena. Y necesito tu ayuda.\n\nNecesito encontrar algunas placas balísticas para alguien. Es un artista frecuente, por lo que es hora de actualizarlo para emocionar al público. Ese es el detalle con los espectáculos, si no echas leña a tiempo, se apaga el fuego.\n\nBueno, ahora ve y búscame unas placas balísticas.\n\n¡El público gritará cuando lo vean!",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "¡Justo lo que necesitaba! No hace falta más. Todos estarán impactados cuando vean los resultados, ¡Te lo prometo! Aquí tienes un casco como recompensa. Su último dueño ahora tiene uno mejor, ¡Ja!",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Crea Una Distracción - Parte 1 [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "¡Ja, deberías de haber visto el caos cuando encontraron las cargas! ¡Todo un show! Es una lástima que no lo hubiéramos grabado todo... Hiciste un buen trabajo. Aquí está tu recompensa.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Crea Una Distracción - Parte 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "¡¿Qué no ves a quién le disparas?! Tenía tantas esperanzas en ti...",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "¡Hacia Grandes Alturas! - Parte 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "¡Nunca dudé de ti ni por un segundo, hermano! Pero recuerda, estamos aquí para entretener al público. ¡Necesitamos un espectáculo más grande! A veces parece como si solo estuvieran disparándole a un montón de latas, ¿Me entiendes?",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "¡Hacia Grandes Alturas! - Parte 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "Hermano, de ahora en adelante estarás bajo mi protección. Me aseguraré de que progreses bien, pero tendrás que mover el culo más seguido.\n\nEmpecemos con lo básico. La Arena está en Tarkov, pero los patrocinadores más importantes están en el extranjero. Miran todas las partidas, hacen apuestas y avientan dinero a los favoritos. Necesitas que algunos de esos peces gordos se interesen en ti. Llama su atención, muéstrales que eres digno. Gánate un nombre. Una sola victoria no es suficiente para lograrlo. ¡Muéstrales que puedes realizar una actuación emocionante!",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "¡Veo que estás progresando! Están comenzando a hablar de ti en el extranjero. La gente está interesada. ¡Es una señal de que vas por buen camino!",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "¡Hacia Grandes Alturas! - Parte 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "¡Vas muy bien! Pero aún es muy pronto como para renunciar. Saca a lucir tu rostro con mayor frecuencia, impresiona a la audiencia. Debes sobresalir. Conviértete en la persona de quien todos hablan, en aquel a quien vienen a ver. Luego llegará el dinero, y luego otros beneficios: autos, chicas... Aunque a Tarkov le falta un poco de lo último.\n\nEn fin, en estos momentos, la Arena es una magnífica oportunidad profesional, ¡Ja!",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "¡Ahora estás un paso más cerca de las grandes ligas! Respeto, hermano.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "¡Hacia Grandes Alturas! - Parte 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "¿Cómo está el ánimo? ¿Listo para la batalla? ¿Listo para brillar en la Arena una vez más? ¿Listo para destrozar a unos cuantos hijos de puta? Las probabilidades aún están en tu contra, ¡Así que no decepciones a la audiencia!\n\nY ya que estamos. ¿Tienes algo de dinero? Debes apostar por ti mismo y luego ganar seis veces. Ganarás toneladas de dinero y serás famoso. Trae el dinero, yo organizaré lo demás. Solamente ten cuidado: si pierdes cinco veces, empiezas de nuevo.",
"683421515619c8e2a9031511 failMessageText": "Ahhh, hombre, casi lo logras. Inténtalo otra vez, parece que la audiencia aún está a tu favor.",
"683421515619c8e2a9031511 successMessageText": "Aquí está tu cheque. Deduje todos mis servicios de ahí: sobornos a oponentes, honorarios y todo eso. ¿Qué? ¿Pensaste que trabajo gratis?",
"683421515619c8e2a9031514": "Entrega Rublos del saldo de EFT",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Condición de Fracaso: Perder 5 partidas",
"683421515619c8e2a903151b": "Condición de fracaso: Perder 5 partidas",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "¡Hacia Grandes Alturas! - Parte 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "¡Tengo buenas noticias! ¡Más bien, son excelentes noticias! Espero que hayas elegido un pequeño departamento en la colonia rica de Tarkov, ¡Porque pronto lo tendrás junto con todo este dinero! Es broma. De todos modos, todas las casas de esos vecindarios se derrumbarán en poco tiempo.\n\nEn fin, algunas personas muy poderosas del otro lado de la frontera están interesadas en ti. Poderosas y de mucho dinero. No puedo decirte sus nombres, es secreto empresarial y no quiero infringir los acuerdos que firmé. Entonces, estas personas están listas para tomarte bajo su protección y patrocinarte a lo grande, pero primero quieren garantías.\n\nNecesitas convertirte en el campeón. Vuela alto, vuela por encima del resto. Tendrás que pasar más tiempo en la Arena. Puedo ver en tus ojos que estás listo.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "Eres muy bueno. Un francés muy famoso - no te diré su nombre por razones de privacidad - está interesado en ti. Tiene un ceceo de la fregada, pero ofrece buen dinero. Ya hice los arreglos para tu patrocinio.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Contra la Conciencia - Parte 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Hola. Escuché que ahora trabajas para Ref. Te he estado siguiendo de cerca por un tiempo.\n\nConocí a un hombre que también se enredó con Ref, al igual que tú. Durante un tiempo, él fue el antiguo campeón de Ref y luego, de repente, desapareció. Y estoy seguro de que esto no tuvo nada que ver con Kaban y Kollontay.\n\nSi no quieres desaparecer igual que ese tipo, busca el departamento del último campeón. Creo que aún queda algo interesante por ahí. El campeón solía pasar el rato con los contrabandistas en los dormitorios de Aduanas. Quizás encuentres algunas pistas sobre cómo entrar a la habitación.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "¿Quieres preguntarle a Ref tú mismo? Bueno, fue un placer conocerte.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Averigua qué pasó con el campeón",
"6834233fecd5cf3a440d8564": "Sobrevive y extrae de la ubicación",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Contra la Conciencia - Parte 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "¿Me estás diciendo que fuiste al dormitorio del último campeón? Muy bien... voy a fingir que eso nunca pasó. Solo recuerda, la curiosidad mató al gato... y también al último campeón. Era un buen tipo, me caía bien, pero se ablandó, perdió el toque.\n\nDeberías practicar más, no andar deambulando por la ciudad. De lo contrario, tu puntuación comenzará a bajar.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "¡Eso es! Debes dedicarle más tiempo a mejorar tus habilidades. Quién sabe qué podría pasar si no lo haces…",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Decisiones, Decisiones [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "He estado escuchando rumores... Rumores muy desagradables. Dicen que intentas excavar en mis asuntos.\n\nMira, nos conocemos desde hace tiempo. ¡Eres como un hermano para mí! No hagas algo de lo que te vayas a arrepentir después. Cuanto menos sepas, dormirás mejor, ¿Escuchaste?\n\nHasta que tenga absoluta confianza en ti, mis hombres estarán vigilándote. No quiero que hagas ninguna travesura, campeón. Y si encuentras algo durante tu pequeña cita con el antiguo campeón, tráemelo. Solo entonces podremos olvidarnos de este pequeño y chistoso accidente.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "Tomaste la decisión correcta. Nunca dudé de ti, hermano. Muy bien, no quiero más chistecitos como estos de ahora en adelante, ¿Me entendiste?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Entrega la información recuperada",
"6834254f2f0e2a7eb90b62f4": "Condición de fracaso: Lleva la información a Fence",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Entre Dos Fuegos [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "Así que viste un cadáver. ¿Lo registraste? ¿Revisaste alrededor? Solamente estoy señalando que estás ciego. El campeón, hasta donde yo sé, traía un diario. Sí, como un adolescente, pero la verdad es que esto juega a tu favor.\n\n¿Por qué no mejor regresas y miras más de cerca? Tiene que haber más información sobre Ref en ese diario, algo sucio sobre él. Hazlo si es que quieres dejar de ser prescindible en la Arena.\n\nY una cosa más: si me traes cualquier información sobre Ref que valga la pena, te pagaré bien.",
"683425dd8f5b18d29a05d9d1 failMessageText": "¿Quieres quedarte bajo la falda de Ref? Bueno, haz lo que quieras.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Localiza la habitación del antiguo campeón",
"683425dd8f5b18d29a05d9d4": "Regresa a la habitación del antiguo campeón en Aduanas",
"683425dd8f5b18d29a05d9d6": "Localiza y obtén la información comprometedora sobre Ref",
"683425dd8f5b18d29a05d9d8": "Entrega la información recuperada",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift [PVE ZONE]",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward [PVE ZONE]",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "Hand over the item: Lega Medal",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "Club de Hobbies",
"684009026ceedc792c09b2a7 description": "Excelente, te estaba esperando. Tengo un amigo en Estados Unidos, un profesional experto en armas de fuego. Está obsesionado con el armamento ruso y lleva varios años trabajando en su propio proyecto, lo llama: el AK-50. Creo que nunca has visto un AK que dispare el calibre .50... Me refiero al de la OTAN.\n\nBueno, al fin ha terminado el proyecto, y me envió un modelo de prueba. Pero es muy arriesgado importar un fusil tan pesado y especializado en un solo envío, así que dividimos el paquete en varias partes. Bueno, adivina qué, las cosas en Tarkov no salieron según lo planeado. Lo sé, qué sorpresa, quién lo hubiera imaginado.\n\nEl cuerpo principal viene en una sola pieza y fue incautado en aguas del Atlántico. Pero, tengo el plano del diseño, así que necesito que lo uses para construir uno nuevo para mí. Dadas nuestras circunstancias, no será fácil, no tengo dudas. Pero al menos tendrás una copia del plano para usarla más adelante.\n\nEl guardamano viene con el tubo de gas, y de alguna manera fue interceptado por los bandidos de Skier. Esta pieza tardó dos años en ensamblarse, ajustarse y probarse, y el costo del desarrollo y los prototipos ya supera los dos millones.\n\nLa cubierta superior fue interceptada en uno de los puntos de control que ya había en Tarkov. No sé cuál será, tendrás que buscarlos todos. Pero el tubo cañón definitivamente está en la base militar. Glukhar personalmente organizó una emboscada a mi convoy y, al parecer, sabía del envío. Tendrás que luchar para conseguirlo o esperar una intervención divina.\n\nCuando hayas reunido todas las partes, déjalas en la caseta de la torre de transmisión cerca de la gasolinera en el distrito de Aduanas. Le pediré a mi equipo que las entregue desde allí, y después podré manufacturar las piezas yo mismo. Y, por supuesto, no olvidaré tu ayuda.",
"684009026ceedc792c09b2a7 failMessageText": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "¿Dices que está despejado? Bien hecho soldado.",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "Cada Vez Más Alto",
"6842c27a38482d35ac0bd847 description": "Consigue el nivel de Prestigio 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Pieza superior de Scav 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Chándal Adik",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "Ropa deportiva",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Chaleco portaplacas Crye Precision AVS (Edición Tagilla)",
"609e860ebd219504d8507525 ShortName": "AVS ET",
"609e860ebd219504d8507525 Description": "Un chaleco portaplacas de Tagilla muy desgastado, basado en el sistema modular AVS de Crye Precision. Equipado con una placa frontal con tres portacargadores. Y eso es todo... nada más y nada menos...",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "Mira réflex SIG Sauer ROMEO8T",
"60a23797a37c940de7062d02 ShortName": "ROMEO8T",
"60a23797a37c940de7062d02 Description": "Una mira réflex ROMEO8T, diseñada para disparos de precisión con fusiles deportivos modernos y escopetas. Producida por SIG Sauer.",
@@ -15116,6 +15122,9 @@
"683ed6ccd9a096739b0c9228 Name": "Guardamano con bloque de gases para AK-50",
"683ed6ccd9a096739b0c9228 ShortName": "G. AK-50",
"683ed6ccd9a096739b0c9228 Description": "Un guardamano M-LOK con bloque de gases y raíl para el fusil de francotirador AK-50.",
"68406efe068a2d99940c1ce3 Name": "Unidad SSD",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "Una unidad de estado sólido (SSD). Se utiliza para almacenar datos, con mayor capacidad de lectura y escritura.",
"68418091b5b0c9e4c60f0e7a Name": "Chapa de identificación USEC",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "Una chapa de identificación militar especial de acero inoxidable que sirve para identificar rápidamente a los heridos y los fallecidos en combate. Tiene un tono dorado inusual.",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "Camiseta Grenadier",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Camiseta de mercancía",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "V-Ex Carretera a la Base Militar",
" Voip/DisabledForOffline": "El VoIP no está disponible en el modo Offline",
" kg": " kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "La resolución ha cambiado. ¿Quieres mantener la resolución actual?",
"Resource": "RECURSOS",
"RestSpace": "DESCANSO",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "Ratio de devolución:",
"Revert": "REVERTIR",
"Revert your settings to default?": "¿Seguro que quieres revertir tus ajustes a los valores por defecto?",
@@ -18970,6 +19015,21 @@
"TeamTab": "Grupos",
"Teamkills": "Aliados eliminados",
"Terrain quality:": "Calidad del terreno:",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "Los cambios en la calidad de las texturas se aplicarán tras reiniciar el juego.",
"Texture quality:": "Calidad de las texturas:",
"That item cannot be insured": "Ese objeto no se puede asegurar",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "Lo haré. <color=grey><i>(aceptar misión \"{0}\")</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "Hecho. <color=grey><i>(finalizar misión \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "He encontrado esto. <color=grey><i>(entregar \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "Ten. <color=grey><i>(entregar objeto \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "Te puedo dejar en estos sitios. Elige uno.",
"Trading/Dialog/PlayerTaxi/Name": "Dar una vuelta",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Muy bien, destino: el Cine Rodina. ¿Te parece bien el precio?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "EQUIPO AMARILLO",
"starvDeaths": "Muertes por inanición",
"stationHeals": "Heridas en tratamiento",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "Sótano del Contrabandista",
"suicides": "Suicidios",
"survClass": "Categoría de superviviente",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "Dinero Fácil - Parte 1",
"66058cb22cee99303f1ba067 name": "Dinero Fácil - Parte 1 [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "Qué pasa tío. Tengo un trabajo para ti. Un viejo amigo mío está buscando a las personas adecuadas para su negocio. No conozco todos los detalles, solo la primera etapa del reclutamiento, por decirlo así. Veo que estás interesado.\n\n¿Has escuchado algo sobre la Arena? Debes poner afiches alrededor de Tarkov. En plan, \"ven a ver\", y toda esa mierda, tú sabes. ¡Eh, los negocios grandes siempre comienzan con cosas pequeñas! Tengo un par de pósteres listos para ti, pero si los pierdes, será tu puto problema, ¿entendido? Llévalos a la fortaleza de los Scavs en Customs. Anda, vete ya.",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "¿Todo listo? Entonces les diré. Por mientras, coge estas cosicas.",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "Dinero Fácil - Parte 2",
"66058cb5ae4719735349b9e8 name": "Dinero Fácil - Parte 2 [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "¡Hola campeón! Un amigo mío te dio una pequeña misión de prueba. Así que he decidido conocerte en persona. La gente me llama Ref. Soy el Anfitrión de la Arena y me gusta ganar mucho dinero, ¡Ja-ja!\n\nClaramente, a ti no te vendría nada mal ganar algo de dinero y yo necesito personal nuevo de forma urgente. El negocio está en auge y me hace falta personal. ¡Nos expendemos!\n\nTenemos agendado otro combate pronto. Como decían en la antigua Roma, \"el pueblo quiere pan y circo\". Vamos bien con lo último, pero se nos está acabando el pan. Es solo una pequeña interrupción de suministros, nada de que preocuparse. Pero necesito que traigas un poco de comida y alcohol para el público.",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "Todo lo que has traído ha sido enviado a los asientos. Bien hecho.",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "Balanceo - Parte 1",
"66058cb7c7f3584787181476 name": "Balanceo - Parte 1 [PVP ZONE]",
"66058cb7c7f3584787181476 description": "Has hecho un gran trabajo en mis encargos. También te he buscado en mi base de datos... Solo como precaución, claro. Nunca contrato a un completo desconocido, ¿me entiendes, hermano? ¡Te he ascendido a evaluador! Estarás probando equipamiento para la Arena.\n\nAcabo de recibir un gran lote de fusiles tipo bullpup a un precio increíble. Anda, ve y pruébalos contra algunos vagabundos. Luego de eso, me decidiré si estos fusiles irán a dar con mis hombres en el Equipo de Limpieza o a los gladiadores.",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "Nada mal ¿eh? La verdad es que me gustan mucho las armas bullpup. Obviamente, el AUG es difícil de mantener, el disparador tiene un mecanismo raro, cuesta acostumbrarse a él, además de que es fácil olvidarse del puerto de eyección. Evidentemente, no es un arma para aficionados. ¡Pero joder, se siente increíble! No los daremos a los del Equipo de Limpieza.\n\nComo sea, aquí está tu recompensa.",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "Balanceo - Parte 2",
"66058cb9e8e4f17985230805 name": "Balanceo - Parte 2 [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "Vale, es hora de poner a prueba un chaleco balístico. Este es solo para el Equipo de Limpieza. Veamos cuánto puede resistir contra mercenarios de verdad. Intenta matar unos cuantos PMC mientras llevas puesto este chaleco PACA. Después de eso, veré qué más se me ocurre.",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "¿Estás vivo? ¡Bien! ¿Qué dices? ¿El chaleco es una mierda y no aguanta nada? Joder, qué lástima. Será demasiado débil para el Equipo de Limpieza, así que tendré que buscar un modelo mejor.",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "Sorpresa",
"66058cbb06ef1d50a60c1f46 name": "Sorpresa [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "Se me ocurrió una gran idea para mejorar aún más la Arena. Y necesito tu ayuda.\n\nNecesito encontrar algunas placas balísticas para alguien. Es un artista frecuente, por lo tanto, es hora de actualizarle para emocionar al público. Ese es el detalle con los espectáculos, si no le echas leña a tiempo, se apaga el fuego.\n\nBueno, anda y busca unas placas balísticas.\n\n¡El público gritará cuando le vean!",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "¡Justo lo que necesito! No hace falta más. Todos estarán impactados cuando vean los resultados, ¡te lo prometo! Aquí tienes un casco como recompensa. Su último dueño ahora tiene uno mejor, ¡Ja!",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "Crea Una Distracción - Parte 1",
"66058cbd9f59e625462acc8e name": "Crea Una Distracción - Parte 1 [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "Mira, estoy empezando a verte como parte de la familia. ¡Como un hermano! Creo que puedo conseguirte un trabajo serio.\n\nTengo a ciertos cofundadores en la Arena, Kaban y Kollontay, tal vez les conozcas. Pensé que eran gente guay, pero ahora decidieron jugar a la política. Quieren poner a su campeón en la Arena, ¿te lo puedes imaginar? Y tú sabes que un buen campeón genera mucha pasta. Requerirá mucho tiempo y dinero reconstruir el negocio.\n\nDebemos asustar a estos tipos para que se enteren de que se están pasando de la raya. Coge unas pocas cargas explosivas y colócalas dentro de la cafetería del centro de la ciudad. Sin detonadores. No vamos a estallar nada, pero haremos que luzca como algo muy grave. Que corran por allí con los cojones de corbata.",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "¡Ja, deberías haber visto el caos que hubo cuando encontraron las cargas! ¡Todo un espectáculo! Es una lástima que no lo hubiéramos grabado todo... Has hecho un buen trabajo. Aquí está tu recompensa.",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "Crea Una Distracción - Parte 2",
"66058cbf2f19c31a5a1337ec name": "Crea Una Distracción - Parte 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Kaban y Kollontay se han cagado encima, vale, pero no es suficiente. Me gustaría acabar con ellos. No tienes que ayudarme con eso, claro, pero...\n\nYa tengo un plan. Debes ir a sus guaridas y dispararle a sus guardaespaldas, o como se llamen. Todos allí dentro son personas de confianza para ellos dos, así que son los blancos perfectos. ¡PERO! ¡Asegúrate de que Kaban y Kollontay salgan ilesos!",
"66058cbf2f19c31a5a1337ec failMessageText": "¡¿Qué no miras a quién le disparas?! Te tenía con tan alta estima...",
"66058cbf2f19c31a5a1337ec successMessageText": "¡Buen trabajo! Kaban y Kollontay están montando toda una tormenta. Creo que pronto acudirán a mí para tratar de dejar todo este negocio.\n\nToma, aquí tienes tu merecida recompensa.",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "¡Hacia Grandes Alturas! - Parte 1",
"66058cc1da30b620a34e6e86 name": "¡Hacia Grandes Alturas! - Parte 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "Muy bien, has terminado tu primera evaluación. Creo que es hora de que surja un nuevo campeón en la Arena. Y ese serás tú. Con tu consentimiento, claro está. Aquí nos mantenemos firmes ante la explotación laboral, ¡Ja ja!\n\nPuedo ayudarte a alcanzar fama y riquezas más allá de tus sueños más locos. Solo tienes que aceptar mi oferta. Pero, ya sabes, las acciones siempre valen más que las palabras. Así que ve a la Arena y gana. Solo así sabré que estás listo para seguir adelante.",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "¡Jamás dudé de ti ni por un segundo, hermano! Pero no lo olvides, estamos aquí para entretener al público. ¡Necesitamos un espectáculo más grande! A veces parece como si solo estuvieran disparando latas, ¿me entiendes?",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "¡Hacia Grandes Alturas! - Parte 2",
"66058cc208308761cf390993 name": "¡Hacia Grandes Alturas! - Parte 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "Hermano, de ahora en adelante estarás bajo mi protección. Me aseguraré de que tengas un buen progreso, pero tendrás que mover el culo más seguido.\n\nEmpecemos con lo básico. La Arena está en Tarkov, pero los patrocinadores más importantes están en el extranjero. Ellos ven todas las partidas, hacen apuestas y arrojan dinero a los favoritos. Necesitas que algunos de esos peces gordos tomen interés en ti. Consigue su atención, demuéstrales que eres digno. Gánate un nombre. Una sola victoria no es suficiente para lograrlo. ¡Muéstrales que puedes realizar una actuación emocionante!",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "¡Veo que vas progresando! Han comenzado a hablar de ti en el extranjero. La gente está interesada. ¡Es una señal de que vas por buen camino!",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "¡Hacia Grandes Alturas! - Parte 3",
"66058cc5bb83da7ba474aba9 name": "¡Hacia Grandes Alturas! - Parte 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "¡Vas muy bien! Pero todavía es muy pronto como para renunciar. Saca a relucir tu rostro con mayor frecuencia, impresiona a la audiencia. Debes destacar. Conviértete en la persona de quien todos hablan, en aquel a quien vienen a ver. Después llegará el dinero, y luego otros beneficios: coches, chicas... Aunque a Tarkov le falta un poco de lo último.\n\nEn fin, en estos momentos, la Arena es una magnífica oportunidad profesional, ¡ja!",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "¡Ahora estás un paso más cerca de las grandes ligas! Respeto, hermano.",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "¡Hacia Grandes Alturas! - Parte 4",
"66058cc72cee99303f1ba069 name": "¡Hacia Grandes Alturas! - Parte 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "¿Cómo está el ánimo? ¿Listo para la batalla? ¿Listo para lucirte en la Arena una vez más? ¿Listo para destrozar a unos cuantos cabronazos? Las probabilidades aún están en tu contra, ¡así que no decepciones a la audiencia!\n\nY ya que estamos. ¿Tienes algo de dinero? Debes apostar por ti mismo y luego ganar seis veces. Ganarás toneladas de dinero y serás famoso. Trae el dinero, yo organizaré el resto. Solo ten cuidado: si pierdes cinco veces, comienzas de nuevo.",
"66058cc72cee99303f1ba069 failMessageText": "Ahhh, tío, casi lo consigues. Inténtalo de nuevo, parece que la audiencia aún está a tu favor.",
"66058cc72cee99303f1ba069 successMessageText": "Aquí está tu cheque. Deduje todos mis servicios de ahí: sobornos a oponentes, honorarios y todo eso. ¿Qué? ¿Pensabas que trabajo gratis?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "¡Hacia Grandes Alturas! - Parte 5",
"66058cc9ae4719735349b9ea name": "¡Hacia Grandes Alturas! - Parte 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "¡Tengo buenas noticias! ¡Mejor dicho, son excelentes noticias! Espero que hayas elegido un pequeño apartamento en la colonia pija de Tarkov, ¡porque pronto lo tendrás junto a todo este dinero! Es coña. De todos modos, todas las casas de esos vecindarios se derrumbarán en poco tiempo.\n\nEn fin, algunas personas muy poderosas del otro lado de la frontera están interesadas en ti. Poderosas y de mucho dinero. No puedo decirte sus nombres, es secreto empresarial y no quiero infringir los acuerdos que firmé. Entonces, estas personas están listas para tomarte bajo su protección y patrocinarte a lo grande, pero primero quieren garantías.\n\nDebes convertirte en el campeón. Vuela alto, vuela por encima del resto. Tendrás que pasar más tiempo en la Arena. Puedo ver en tus ojos que estás listo.",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "Eres muy bueno. Un francés muy famoso - no diré su nombre por razones de privacidad - está interesado en ti. Tiene un ceceo que es un coñazo, pero ofrece buena pasta. Ya he hecho los arreglos para tu patrocinio.",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "Contra la Conciencia - Parte 1",
"66058ccbc7f3584787181478 name": "Contra la Conciencia - Parte 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "Hola. Escuché que ahora trabajas para Ref. Te he seguido la pista de cerca desde hace un tiempo.\n\nConocí a un hombre que también se había enrolado con Ref, al igual que tú. Durante un tiempo, él fue el antiguo campeón de Ref y luego, de repente, desapareció. Y estoy seguro de que esto no tuvo nada que ver con Kaban y Kollontay.\n\nSi no quieres desaparecer al igual que ese tipo, busca el apartamento del último campeón. Creo que aún ha de quedar algo interesante por allí. El campeón solía pasar el tiempo con los contrabandistas en los dormitorios de Customs. Quizás encuentres algunas pistas sobre cómo entrar a la habitación.",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "¿Irás en persona a preguntarle a Ref? Bueno, fue un placer conocerte.",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "Contra la Conciencia - Parte 2",
"66058ccde8e4f17985230807 name": "Contra la Conciencia - Parte 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "¿Dices que has ido al dormitorio del último campeón? Vale... voy a fingir que eso nunca pasó. Solo recuerda, la curiosidad mató al gato... y también al último campeón. Era un tío guay, me caía bien, pero se ablandó, perdió el toque.\n\nDeberías practicar más, no andar deambulando por la ciudad. De lo contrario, tu puntuación comenzará a bajar.",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "¡Eso es! Debes dedicarle más tiempo a mejorar tus habilidades. Quién sabe qué podría pasar si no lo haces…",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "Entre Dos Fuegos",
"66058ccf06ef1d50a60c1f48 name": "Entre Dos Fuegos [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "Así que has encontrado un cadáver. ¿Lo registraste? ¿Revisaste alrededor? Solo estoy señalando que eres un ciego. El campeón, hasta donde sé, llevaba un diario. Sí, como un adolescente, pero la verdad es que esto juega a tu favor.\n\n¿Por qué no mejor vuelves y buscas con más cuidado? Debe haber más información sobre Ref en ese diario, algo sucio sobre él. ¿Quieres dejar de ser prescindible en la Arena? Entonces hazlo.\n\nY una cosa más: si me traes cualquier otra información sobre Ref que valga la pena, te pagaré bien.",
"66058ccf06ef1d50a60c1f48 failMessageText": "¿Quieres quedarte bajo la falda de Ref? Vale, haz lo que quieras.",
"66058ccf06ef1d50a60c1f48 successMessageText": "Bien hecho. Me alegro de que hayas tenido los cojones para tomar el control de tu destino.\n\nAsegúrese de no contarle nada de esto a Ref.",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "Decisiones, Decisiones",
"66058cd19f59e625462acc90 name": "Decisiones, Decisiones [PVP ZONE]",
"66058cd19f59e625462acc90 description": "He estado escuchando rumores... Rumores muy desagradables. Dicen que intentas excavar en mis asuntos.\n\nMira, nos conocemos desde hace tiempo. ¡Eres como un hermano para mí! No hagas algo de lo que te vayas a arrepentir después. Cuanto menos sepas, dormirás mejor, ¿escuchaste?\n\nHasta que tenga absoluta confianza en ti, mis hombres te estarán vigilando. No quiero que hagas ninguna jugarreta, campeón. Y si encuentras algo durante tu pequeña cita con el antiguo campeón, tráelo. Solo entonces podremos olvidarnos de este pequeño y gracioso accidente.",
"66058cd19f59e625462acc90 failMessageText": "¿Te han puesto un arma en la frente y te han robado todo, eh? ¡No intentes tomarme el pelo gilipollas! ¡¿Dónde coño está ese puñetero diario?! Joder. Como sea, me encargaré de eso más tarde.",
"66058cd19f59e625462acc90 successMessageText": "Has tomado la decisión correcta. Nunca dudé de ti, hermano. Muy bien, no quiero más jugarretas como estas de ahora en adelante, ¿me has escuchado?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "¡Esa cosa es enorme! Espero que no haya sido demasiada molestia. Bueno, déjala aquí. Estás haciendo un gran trabajo por mí y no lo olvidaré. Gracias.",
"6744a964dc1b1e2ee134ffeb": "Entrega el objeto: Batería militar 6-STEN-140-M",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "Estoy partiéndome la espalda por ti... Vale, veré cómo me las apaño.",
"6744a728352b4da8e003eda9 declinePlayerMessage": "Mmm... no. Una vez tuve que arrastrarme durante horas con una de esas baterías. Perdona, pero no podré hacerlo.",
"6744a728352b4da8e003eda9 completePlayerMessage": "Aquí está lo que buscabas. Te juro que esta es la última vez que hago una entrega de batería de tanque.",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "¡Esa cosa es enorme! Espero que no haya sido demasiada molestia. Bueno, déjala aquí. Estás haciendo un gran trabajo por mí y no lo olvidaré. Gracias.",
"6744a9dfef61d56e020b5c54": "Entrega el objeto: Batería militar 6-STEN-140-M",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Estoy partiéndome la espalda por ti... Vale, veré cómo me las apaño.",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "Mmm... no. Una vez tuve que arrastrarme durante horas con una de esas baterías. Perdona, pero no podré hacerlo.",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "Aquí está lo que buscabas. Te juro que esta es la última vez que hago una entrega de batería de tanque.",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "¿Estás seguro de que es esta? ¡Vale, puedo olerlo, sin duda esta es la botella!\n\nRagman me habló ayer sobre el sótano del Balneario, incluso tuve que emborracharlo para que pudiéramos cambiar de tema. En fin, había un refugio antiaéreo soviético debajo del Balneario, y Ref iba a organizar una nueva arena allí, para un público VIP. Creo que también involucraba a Tagilla de alguna manera... No, era algo más...\n\nCómo sea, para esta arena, Ref organizó una gran adquisición de equipamiento de Ragman, todo estaba casi listo. Y entonces, de repente, nuestro anfitrión se echó para atrás. ¿Por qué? Quien coño sabe.\n\nRagman estaba muy molesto porque la idea se había ido a la mierda. Pero ya había entregado parte del equipamiento, y definitivamente usó esas tarjetas que buscas. Mejor pregúntale tú mismo, no recuerdo mucho de lo de ayer. Por cierto, gracias por el trago.",
"67a0da26a3b8d254347b8634": "Entrega una Botella de aguardiente casero Fierce Hatchling",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "No llegaste a la \"muestra de prueba\" de ayer. Toma, Ragman me ha pedido que te la diera para que la probaras tú mismo.",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "Por cierto, quería preguntarte: ¿Has escuchado algo sobre las instalaciones que hay debajo del Balneario y las tarjetas para acceder a ellas?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "Regalo Sorpresa",
"67e993b1ac26bf29380a320b name": "Regalo Sorpresa [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "Escuché que te has involucrado en este lío entre Fence y Ref. Así que, por supuesto, has decidido acudir a mí. ¿Quieres cabrear a Ref? Mmm, eso me beneficiaría. Tráeme esas porquerías sobre él y encontraré la manera de usarlas.",
"67e993b1ac26bf29380a320b failMessageText": "¿Y por qué te has molestado en venir conmigo en primer lugar si solo ibas a darle la información a uno de esos dos?",
"67e993b1ac26bf29380a320b successMessageText": "Me alegro de que entiendes con quién resulta más ventajoso hacer una amistad.",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "Recibirás la información que pides.",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "Aquí está todo lo que pude encontrar sobre Ref.",
"67e993f5ed537409f009da75 name": "Recompensa Postergada",
"67e993f5ed537409f009da75 name": "Recompensa Postergada [PVP ZONE]",
"67e993f5ed537409f009da75 description": "Bueno, la has cagado de una forma desproporcionalmente vergonzosa con la evidencia, pero claro, cumpliré con mi palabra. Te conseguiré tu puñetero contenedor. Pero ahora te pediré algo más, ahora que la cosa se ha puesto fea.",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "Vale, te has ganado tu recompensa. Pero será mejor que te quede claro que no voy a seguir soportando tus mierdas. Si vuelves a meter las narices donde no te corresponde, terminarás como ese viejo campeón.",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Dinero Fácil - Parte 1 [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Qué pasa tío. Tengo un trabajo para ti. Un viejo amigo mío está buscando a las personas adecuadas para su negocio. No conozco todos los detalles, solo la primera etapa del reclutamiento, por decirlo así. Veo que estás interesado.\n\n¿Has escuchado algo sobre la Arena? Debes poner afiches alrededor de Tarkov. En plan, \"ven a ver\", y toda esa mierda, tú sabes. ¡Eh, los negocios grandes siempre comienzan con cosas pequeñas! Tengo un par de pósteres listos para ti, pero si los pierdes, será tu puto problema, ¿entendido? Llévalos a la fortaleza de los Scavs en Customs. Anda, vete ya.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "¿Todo listo? Entonces les diré. Por mientras, coge estas cosicas.",
"6834145ebc1f443d7603c8ab": "Coloca el paquete de pósteres de Bison VS Undertaker en el alojamiento de la base Scav en Customs",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Dinero Fácil - Parte 2 [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "¡Hola campeón! Un amigo mío te dio una pequeña misión de prueba. Así que he decidido conocerte en persona. La gente me llama Ref. Soy el Anfitrión de la Arena y me gusta ganar mucho dinero, ¡Ja-ja!\n\nClaramente, a ti no te vendría nada mal ganar algo de dinero y yo necesito personal nuevo de forma urgente. El negocio está en auge y me hace falta personal. ¡Nos expendemos!\n\nTenemos agendado otro combate pronto. Como decían en la antigua Roma, \"el pueblo quiere pan y circo\". Vamos bien con lo último, pero se nos está acabando el pan. Es solo una pequeña interrupción de suministros, nada de que preocuparse. Pero necesito que traigas un poco de comida y alcohol para el público.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Todo lo que has traído ha sido enviado a los asientos. Bien hecho.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Entrega el objeto encontrado en incursión: Botella de cerveza Pevko Light",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "Balanceo - Parte 1 [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "Balanceo - Parte 2 [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Sorpresa [PVE ZONE]",
"68341b407559f4e6d50bc0ce description": "Se me ocurrió una gran idea para mejorar aún más la Arena. Y necesito tu ayuda.\n\nNecesito encontrar algunas placas balísticas para alguien. Es un artista frecuente, por lo tanto, es hora de actualizarle para emocionar al público. Ese es el detalle con los espectáculos, si no le echas leña a tiempo, se apaga el fuego.\n\nBueno, anda y busca unas placas balísticas.\n\n¡El público gritará cuando le vean!",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "¡Justo lo que necesito! No hace falta más. Todos estarán impactados cuando vean los resultados, ¡te lo prometo! Aquí tienes un casco como recompensa. Su último dueño ahora tiene uno mejor, ¡Ja!",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Crea Una Distracción - Parte 1 [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "¡Ja, deberías haber visto el caos que hubo cuando encontraron las cargas! ¡Todo un espectáculo! Es una lástima que no lo hubiéramos grabado todo... Has hecho un buen trabajo. Aquí está tu recompensa.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Crea Una Distracción - Parte 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "¡¿Qué no miras a quién le disparas?! Te tenía con tan alta estima...",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "¡Hacia Grandes Alturas! - Parte 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "¡Jamás dudé de ti ni por un segundo, hermano! Pero no lo olvides, estamos aquí para entretener al público. ¡Necesitamos un espectáculo más grande! A veces parece como si solo estuvieran disparando latas, ¿me entiendes?",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "¡Hacia Grandes Alturas! - Parte 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "Hermano, de ahora en adelante estarás bajo mi protección. Me aseguraré de que tengas un buen progreso, pero tendrás que mover el culo más seguido.\n\nEmpecemos con lo básico. La Arena está en Tarkov, pero los patrocinadores más importantes están en el extranjero. Ellos ven todas las partidas, hacen apuestas y arrojan dinero a los favoritos. Necesitas que algunos de esos peces gordos tomen interés en ti. Consigue su atención, demuéstrales que eres digno. Gánate un nombre. Una sola victoria no es suficiente para lograrlo. ¡Muéstrales que puedes realizar una actuación emocionante!",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "¡Veo que vas progresando! Han comenzado a hablar de ti en el extranjero. La gente está interesada. ¡Es una señal de que vas por buen camino!",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "¡Hacia Grandes Alturas! - Parte 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "¡Vas muy bien! Pero todavía es muy pronto como para renunciar. Saca a relucir tu rostro con mayor frecuencia, impresiona a la audiencia. Debes destacar. Conviértete en la persona de quien todos hablan, en aquel a quien vienen a ver. Después llegará el dinero, y luego otros beneficios: coches, chicas... Aunque a Tarkov le falta un poco de lo último.\n\nEn fin, en estos momentos, la Arena es una magnífica oportunidad profesional, ¡ja!",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "¡Ahora estás un paso más cerca de las grandes ligas! Respeto, hermano.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "¡Hacia Grandes Alturas! - Parte 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "¿Cómo está el ánimo? ¿Listo para la batalla? ¿Listo para lucirte en la Arena una vez más? ¿Listo para destrozar a unos cuantos cabronazos? Las probabilidades aún están en tu contra, ¡así que no decepciones a la audiencia!\n\nY ya que estamos. ¿Tienes algo de dinero? Debes apostar por ti mismo y luego ganar seis veces. Ganarás toneladas de dinero y serás famoso. Trae el dinero, yo organizaré el resto. Solo ten cuidado: si pierdes cinco veces, comienzas de nuevo.",
"683421515619c8e2a9031511 failMessageText": "Ahhh, tío, casi lo consigues. Inténtalo de nuevo, parece que la audiencia aún está a tu favor.",
"683421515619c8e2a9031511 successMessageText": "Aquí está tu cheque. Deduje todos mis servicios de ahí: sobornos a oponentes, honorarios y todo eso. ¿Qué? ¿Pensabas que trabajo gratis?",
"683421515619c8e2a9031514": "Entrega Rublos del saldo de EFT",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Condición de Fracaso: Perder 5 partidas",
"683421515619c8e2a903151b": "Condición de fracaso: Perder 5 partidas",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "¡Hacia Grandes Alturas! - Parte 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "¡Tengo buenas noticias! ¡Mejor dicho, son excelentes noticias! Espero que hayas elegido un pequeño apartamento en la colonia pija de Tarkov, ¡porque pronto lo tendrás junto a todo este dinero! Es coña. De todos modos, todas las casas de esos vecindarios se derrumbarán en poco tiempo.\n\nEn fin, algunas personas muy poderosas del otro lado de la frontera están interesadas en ti. Poderosas y de mucho dinero. No puedo decirte sus nombres, es secreto empresarial y no quiero infringir los acuerdos que firmé. Entonces, estas personas están listas para tomarte bajo su protección y patrocinarte a lo grande, pero primero quieren garantías.\n\nDebes convertirte en el campeón. Vuela alto, vuela por encima del resto. Tendrás que pasar más tiempo en la Arena. Puedo ver en tus ojos que estás listo.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "Eres muy bueno. Un francés muy famoso - no diré su nombre por razones de privacidad - está interesado en ti. Tiene un ceceo que es un coñazo, pero ofrece buena pasta. Ya he hecho los arreglos para tu patrocinio.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Contra la Conciencia - Parte 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Hola. Escuché que ahora trabajas para Ref. Te he seguido la pista de cerca desde hace un tiempo.\n\nConocí a un hombre que también se había enrolado con Ref, al igual que tú. Durante un tiempo, él fue el antiguo campeón de Ref y luego, de repente, desapareció. Y estoy seguro de que esto no tuvo nada que ver con Kaban y Kollontay.\n\nSi no quieres desaparecer al igual que ese tipo, busca el apartamento del último campeón. Creo que aún ha de quedar algo interesante por allí. El campeón solía pasar el tiempo con los contrabandistas en los dormitorios de Customs. Quizás encuentres algunas pistas sobre cómo entrar a la habitación.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "¿Irás en persona a preguntarle a Ref? Bueno, fue un placer conocerte.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Averigua qué ocurrió con el campeón",
"6834233fecd5cf3a440d8564": "Sobrevive y extrae de la localización",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Contra la Conciencia - Parte 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "¿Dices que has ido al dormitorio del último campeón? Vale... voy a fingir que eso nunca pasó. Solo recuerda, la curiosidad mató al gato... y también al último campeón. Era un tío guay, me caía bien, pero se ablandó, perdió el toque.\n\nDeberías practicar más, no andar deambulando por la ciudad. De lo contrario, tu puntuación comenzará a bajar.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "¡Eso es! Debes dedicarle más tiempo a mejorar tus habilidades. Quién sabe qué podría pasar si no lo haces…",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Decisiones, Decisiones [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "He estado escuchando rumores... Rumores muy desagradables. Dicen que intentas excavar en mis asuntos.\n\nMira, nos conocemos desde hace tiempo. ¡Eres como un hermano para mí! No hagas algo de lo que te vayas a arrepentir después. Cuanto menos sepas, dormirás mejor, ¿escuchaste?\n\nHasta que tenga absoluta confianza en ti, mis hombres te estarán vigilando. No quiero que hagas ninguna jugarreta, campeón. Y si encuentras algo durante tu pequeña cita con el antiguo campeón, tráelo. Solo entonces podremos olvidarnos de este pequeño y gracioso accidente.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "Has tomado la decisión correcta. Nunca dudé de ti, hermano. Muy bien, no quiero más jugarretas como estas de ahora en adelante, ¿me has escuchado?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Entrega la información recuperada",
"6834254f2f0e2a7eb90b62f4": "Condición de fracaso: Lleva la información a Fence",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Entre Dos Fuegos [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "Así que has encontrado un cadáver. ¿Lo registraste? ¿Revisaste alrededor? Solo estoy señalando que eres un ciego. El campeón, hasta donde sé, llevaba un diario. Sí, como un adolescente, pero la verdad es que esto juega a tu favor.\n\n¿Por qué no mejor vuelves y buscas con más cuidado? Debe haber más información sobre Ref en ese diario, algo sucio sobre él. ¿Quieres dejar de ser prescindible en la Arena? Entonces hazlo.\n\nY una cosa más: si me traes cualquier otra información sobre Ref que valga la pena, te pagaré bien.",
"683425dd8f5b18d29a05d9d1 failMessageText": "¿Quieres quedarte bajo la falda de Ref? Vale, haz lo que quieras.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Localiza la habitación del antiguo campeón",
"683425dd8f5b18d29a05d9d4": "Regresa a la habitación del antiguo campeón en Customs",
"683425dd8f5b18d29a05d9d6": "Localiza y obtén la información comprometedora sobre Ref",
"683425dd8f5b18d29a05d9d8": "Entrega la información recuperada",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift [PVE ZONE]",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward [PVE ZONE]",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "Hand over the item: Lega Medal",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "Club de Hobbies",
"684009026ceedc792c09b2a7 description": "Excelente, te estaba esperando. Tengo un amigo en los Estados Unidos, un profesional experto en armas de fuego. Está obsesionado con las armas rusas y lleva años trabajando en su propio proyecto, lo ha llamado: el AK-50. Creo que nunca has visto un AK que dispare el calibre .50... Al de la OTAN, me refiero.\n\nBueno, finalmente ha terminado el proyecto, y me ha enviado un modelo de prueba. Pero es muy arriesgado importar un fusil tan pesado y especializado en un solo envío, así que hemos dividido el paquete en varias partes. Pero bueno, adivina qué, las cosas en Tarkov no salieron según lo planeado. Lo sé, qué sorpresa, quién lo hubiera imaginado.\n\nEl cuerpo principal viene en una sola pieza y fue incautado en aguas del Atlántico. Pero, tengo el plano del diseño, así que necesito que lo uses para construir uno nuevo para mí. Dadas nuestras circunstancias, no será fácil, no tengo dudas. Pero al menos tendrás una copia del plano para usarla en el futuro.\n\nEl guardamano viene con el tubo de gas, y de alguna manera fue interceptado por los matones de Skier. Esta pieza tardó dos años en ser ensamblada, ajustarse y probarse, y el coste del desarrollo y los prototipos ya supera los dos millones.\n\nEl guardapolvo fue interceptado en uno de los puntos de control que había en Tarkov. No sé cuál será, deberás buscar en todos. Pero el tubo cañón definitivamente está en la base militar. Glukhar en persona organizó una emboscada a mi convoy y, al parecer, sabía del envío. Tendrás que luchar para conseguirlo o esperar una intervención divina.\n\nCuando hayas reunido todas las partes, déjalas en la caseta de la torre de transmisión, cerca de la gasolinera, en el distrito aduanero. Le pediré a mi equipo que las entregue desde allí, y después podré manufacturar las piezas yo mismo. Y, por supuesto, no olvidaré tu ayuda.",
"684009026ceedc792c09b2a7 failMessageText": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "¿Dices que está todo despejado? Buen trabajo soldado.",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "Cada Vez Más Alto",
"6842c27a38482d35ac0bd847 description": "Consigue el nivel de Prestigio 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Haut scav 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Jogging Adik",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "Sportswear",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Gilet tactique porte-plaques Crye Precision AVS (édition Tagilla)",
"609e860ebd219504d8507525 ShortName": "AVS ET",
"609e860ebd219504d8507525 Description": "Gilet tactique porte-plaques de Tagilla bien usé basé sur le système AVS par Crye Precision. Il possède une interface avant avec 3 poches. C'est à peu près tout, ni plus ni moins.",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "Viseur reflex SIG Sauer ROMEO8T",
"60a23797a37c940de7062d02 ShortName": "ROMEO8T",
"60a23797a37c940de7062d02 Description": "The ROMEO8T reflex sight, designed for precision shooting for modern sporting rifles and shotguns. Manufactured by SIG Sauer.",
@@ -15116,6 +15122,9 @@
"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.",
"68406efe068a2d99940c1ce3 Name": "Disque SSD",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "Un Solid state drive (SSD). Utilisé pour stocker des données, avec performances en lecture et écriture améliorés.",
"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.",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "Grenadier t-shirt",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Merch t-shirt",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "Véhicule vers la base militaire",
" Voip/DisabledForOffline": "Le VOIP est indisponible en mode hors-ligne",
" kg": " kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "La résolution a été modifiée. Voulez-vous conserver la résolution actuelle\u00A0?",
"Resource": "RESSOURCE",
"RestSpace": "COIN REPOS",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "Taux de retour : ",
"Revert": "RÉTABLIR",
"Revert your settings to default?": "Êtes-vous sûr de vouloir rétablir les paramètres par défaut ?",
@@ -18970,6 +19015,21 @@
"TeamTab": "Équipes",
"Teamkills": "Fratricides",
"Terrain quality:": "Qualité du terrain\u00A0: ",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "Le nouveau paramètre de qualité des textures sera appliqué après redémarrage du jeu.",
"Texture quality:": "Qualité des textures\u00A0: ",
"That item cannot be insured": "Cet objet ne peut pas être assuré",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "Je fais ça. <color=grey><i>(acceptrer la tâche \"{0}\")</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "C'esf fait <color=grey><i>(compléter la tâche \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "J'ai trouvé ça. <color=grey><i>(Livrer \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "Tenez. <color=grey><i>(livrer l'objet \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "Voilà où je peux te déposer. Fais ton choix.",
"Trading/Dialog/PlayerTaxi/Name": "Faire un tour",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Bien, destination le cinéma Rodina. Le prix te convient ?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "ÉQUIPE JAUNE",
"starvDeaths": "Morts par famine",
"stationHeals": "Soins en cours",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "Sous-sol des contrebandiers",
"suicides": "Suicides",
"survClass": "Classe de survivant",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "Argent facile - Partie 1",
"66058cb22cee99303f1ba067 name": "Argent facile - Partie 1 [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "Salut, lami. Jai un petit boulot pour toi. Un vieux pote à moi cherche des gens fiables pour son affaire. Je ne connais pas tous les détails, juste la première étape du recrutement, on va dire. Je vois que ça tintéresse.\n\nTas entendu parler de lArène ? Faut coller des affiches un peu partout dans Tarkov. Genre « viens jeter un œil », ce genre de conneries, tu vois le tableau. Eh, même les gros bonnets commencent petit, hein ! Jai quelques posters prêts pour toi, mais si tu les perds, ce sera ton foutu problème, compris ? Amène-les jusquau repaire des Scavs au terminal des douanes. Allez, file.",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "C'est fait ? Alors je transmets. Voici quelques goodies en attendant.",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "Argent facile - Partie 2",
"66058cb5ae4719735349b9e8 name": "Argent facile - Partie 2 [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "Bonjour, champion ! Un de mes amis t'a donné une petite mission d'essai. Maintenant, j'ai décidé de te rencontrer en personne. Les gens m'appellent Ref. Je mets en place les arènes et j'amasse les gros dollars, ha ! De toute évidence, cela ne te dérange pas de gagner de l'argent, et j'ai désespérément besoin de nouveau personnel. Les affaires sont en plein essor et je suis à court de main-d'œuvre. Nous nous agrandissons ! Nous avons prévu un autre combat bientôt. Comme on disait dans la Rome antique, « le peuple exige du pain et des cirques ». Sur ce dernier point c'est géré, mais le pain est en retard. Juste une petite rupture d'approvisionnement, ne t'inquiéte pas. Apporte-moi juste de la nourriture et de l'alcool pour le public.",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "Tout ce que tu as apporté a déjà été envoyé dans les tribunes. Bien joué.",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "Équilibrage - Partie 1",
"66058cb7c7f3584787181476 name": "Équilibrage - Partie 1 [PVP ZONE]",
"66058cb7c7f3584787181476 description": "Tu as fait du bon boulot sur mes missions. Jai aussi jeté un œil à tes infos dans mes bases de données… Juste une précaution. On nembauche pas nimporte qui, tu vois ce que je veux dire, frère ? Je te promeus testeur ! Tu vas tester du matos pour larène.\n\nJe viens de recevoir un joli lot de bullpups à un prix délicieux. Vas-y, essaye-les sur quelques clodos. Après ça, je déciderai si ces armes iront à mes équipes de nettoyage ou à mes gladiateurs.",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "Pas une mauvaise arme, hein ? Pour être honnête, jai un faible pour les bullpups. LAUG est évidemment difficile à entretenir, il a un mécanisme de détente bizarre, pas facile à prendre en main, et on oublie facilement de quel côté se trouve la fenêtre d’éjection. Ce nest clairement pas une arme pour les amateurs. Mais quest-ce quelle est agréable à utiliser ! Je préfère ne pas la filer à l’équipe de nettoyage.\n\nEnfin bref, voici ta récompense.",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "Équilibrage - Partie 2",
"66058cb9e8e4f17985230805 name": "Équilibrage - Partie 2 [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "Il est maintenant l'heure de tester quelques gilets pare-balles. Cette fois, ce n'est que pour l'équipe de nettoyage. Voyons voir comment ils tiennent face à de réels mercenaires. Tente de buter des opérateurs en portant un gilet PACA. Après ça, on verra ce que je pourrai dégoter.",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "En vie ? Bien ! Quoi\u00A0? Tu dis que le gilet est claqué et qu'il n'arrête rien ? Et merde, c'est dommage... Ça ne va pas le faire pour l'équipe de nettoyage, donc je vais devoir trouver quelque chose de mieux.\n\nVoilà ta récompense. On en reste là pour cette histoire d'équilibrage pour l'instant.",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "Surprise",
"66058cbb06ef1d50a60c1f46 name": "Surprise [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "J'ai eu une super idée pour rendre l'arène encore meilleure. Et j'ai besoin de ton aide.\n\nJe dois trouver des plaques balistiques pour un gars. C'est un artiste qui se produit régulièrement, donc il est temps de lui donner une mise à niveau pour enflammer la foule. C'est ça, les spectacles : si tu n'ajoutes pas de bois à temps, le feu s'éteint.\n\nEh bien, maintenant, va me chercher des plaques balistiques.\n\nLa foule va crier quand elle le verra !",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "Juste ce dont j'avais besoin ! Il ne reste pas grand-chose. Tout le monde sera ravi de voir les résultats, je te le promets ! Voici un casque en récompense. Son dernier propriétaire en a un meilleur maintenant, ha !",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "Créer une diversion - Partie 1",
"66058cbd9f59e625462acc8e name": "Créer une diversion - Partie 1 [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "Écoute, tu commences à être comme de la famille pour moi. Comme un frère ! Je crois que je peux te proposer du boulot sérieux.\n\nJai deux associés dans lArène, Kaban et Kollontay, tu les connais peut-être. Je pensais que c’étaient des types réglo, mais voilà quils se lancent dans des jeux politiques. Ils veulent foutre leur propre champion dans lArène, tu te rends compte ? Et un bon champion, ça ramène un paquet de fric, tu vois le genre. Ça va coûter cher et prendre du temps de reconstruire tout le business.\n\nFaut leur faire un peu peur, histoire quils pigent quils dépassent les bornes. Prends quelques pains dexplosif et planque-les dans le café du centre-ville. Sans détonateurs. On va rien faire péter, cest juste pour leur faire croire que cest du sérieux. Quils courent un peu dans tous les sens, ces cons.",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "Ha, tu aurais dû voir le chaos quand ils ont trouvé les pains ! Quel spectacle ! C'est vraiment dommage qu'on n'ait pas tout filmé... Tu as fait du bon travail. Voici ta récompense.",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "Créer une diversion - Partie 2",
"66058cbf2f19c31a5a1337ec name": "Créer une diversion - Partie 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Kaban et Kollontay se sont bien chiés dessus, ouais, mais pour moi, ça ne suffit pas. Jveux les achever. Tes pas obligé de maider pour ça, bien sûr, mais…\n\nJai déjà un plan. Tu dois te rendre dans leurs planques et descendre leurs gardes du corps, ou peu importe comment ils sappellent. Tous ceux-là sont des proches en qui ils ont confiance, donc ce sont des cibles parfaites. MAIS ! Assure-toi que Kaban et Kollontay restent en vie !",
"66058cbf2f19c31a5a1337ec failMessageText": "Tu ne regardes pas sur qui tu tires ?! J'avais tellement d'espoirs en toi.",
"66058cbf2f19c31a5a1337ec successMessageText": "Beau boulot ! Kaban et Kollontay commencent déjà à semer le chaos. Je pense quils finiront bientôt par venir me voir pour quitter ce business.\n\nVoici ta récompense bien méritée.",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "Vers les sommets ! - Partie 1",
"66058cc1da30b620a34e6e86 name": "Vers les sommets ! - Partie 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "Eh bien, eh bien, tu as terminé ta première évaluation. Je pense qu'il est grand temps qu'un nouveau champion de l'arène se lève. Et ce sera toi. Avec ton consentement, bien sûr. On ne pratique pas la cruauté ici, haha !\n\nJe peux t'aider à atteindre des sommets et des richesses au-delà de tes rêves les plus fous. Il te suffit d'accepter mon offre. Mais, tu sais, les actes valent toujours mieux que les paroles. Alors vas-y, entre dans l'arène et gagne. C'est ainsi que je saurai que tu es prêt à aller plus loin.",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "Je n'ai jamais douté de toi une seconde, frère ! Mais souviens-toi, nous sommes ici pour divertir les gens. Nous avons besoin d'un plus grand spectacle ! Parfois, on dirait que tu tires juste sur des canettes, tu sais.",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "Vers les sommets ! - Partie 2",
"66058cc208308761cf390993 name": "Vers les sommets ! - Partie 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "Tu es sous mon aile à partir de maintenant, frère. Je vais m'assurer que tu progresses bien, mais tu vas devoir t'équiper le cul plus souvent.\n\nCommençons par les bases. L'Arène est à Tarkov, mais les plus gros sponsors sont à l'étranger. Ils regardent chaque match, parient, et lancent de l'argent sur leurs favoris. Et toi, tu dois attirer l'attention de ces gros bonnets. Montre-leur que tu en vaux la peine. Fais-toi un nom. Une seule victoire ne suffira pas. Montre-leur que tu es capable d'offrir un spectacle palpitant !",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "Je vois les progrès que tu fais ! On commence à parler de toi à l'étranger. Les gens s'intéressent. C'est signe que tu es sur la bonne voie !",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "Vers les sommets ! - Partie 3",
"66058cc5bb83da7ba474aba9 name": "Vers les sommets ! - Partie 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "Tu fais du bon travail ! Mais c'est encore trop tôt pour t'arrêter. Montre-toi plus souvent, impressionne le public. Fais-toi remarquer. Deviens celui dont tout le monde parle, celui qu'ils viennent voir. Ensuite, l'argent suivra, puis les autres plaisirs : voitures, filles... Même si Tarkov en manque un peu sur ce dernier point.\n\nQuoi qu'il en soit, l'Arène est une excellente opportunité de carrière en ce moment, ha !",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "Et te voilà maintenant un pas plus près des grandes ligues ! Respect, frère.",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "Vers les sommets ! - Partie 4",
"66058cc72cee99303f1ba069 name": "Vers les sommets ! - Partie 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "Comment ça va ? Prêt pour la bataille ? Prêt à briller encore une fois dans l'Arène ? Prêt à déchiqueter des enfoirés ? Les chances sont toujours contre toi, alors ne déçois pas le public !\n\nEn parlant de ça, tu as un peu d'argent ? Tu dois parier sur toi-même et ensuite gagner six fois. Tu feras des tonnes de fric, et tu seras célèbre. Apporte l'argent, je m'occupe de tout. Juste un avertissement : si tu perds cinq fois, tu recommences à zéro.",
"66058cc72cee99303f1ba069 failMessageText": "Oh mec, tu y étais presque. Réessaie, le public semble toujours t'apprécier.",
"66058cc72cee99303f1ba069 successMessageText": "Voici ton chèque. J'ai directement déduit tous mes services : les pots-de-vin des adversaires, les frais, et tout ça. Quoi, tu pensais que je travaillais gratuitement ?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "Vers les sommets ! - Partie 5",
"66058cc9ae4719735349b9ea name": "Vers les sommets ! - Partie 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "J'ai de bonnes nouvelles ! Excellentes nouvelles, en fait ! J'espère que tu as déjà choisi un petit appartement dans le quartier chic de Tarkov, car tu l'auras bientôt avec tout cet argent ! Je plaisante. De toute façon, toutes les maisons de ces quartiers vont s'effondrer bientôt.\n\nQuoi qu'il en soit, des personnes très puissantes de l'autre côté de la frontière s'intéressent à toi. Puissantes et riches. Je ne peux pas te dire leurs noms, c'est un secret d'affaires, et je ne vais pas violer ce que j'ai signé. Alors, ces gens sont prêts à te prendre sous leur aile et à te sponsoriser généreusement, mais ils veulent d'abord des garanties.\n\nTu dois devenir le champion. Vole haut, surpasse les autres. Tu vas devoir passer plus de temps dans l'Arène. Je vois dans tes yeux que tu es prêt.",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "Tu es vraiment doué. Un homme très célèbre en France, je ne te dirai pas son nom pour des raisons de confidentialité, s'intéresse à toi. Il zozote comme pas possible, mais il propose une belle somme d'argent. J'ai déjà organisé ton sponsoring.",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "Contre la conscience - Partie 1",
"66058ccbc7f3584787181478 name": "Contre la conscience - Partie 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "Salut. J'ai entendu dire que tu travailles maintenant pour Ref. Je te surveille depuis un moment.\n\nJe connaissais un gars qui s'était retrouvé dans la même situation que toi. Il a été le champion de Ref pendant un certain temps, puis tout à coup, il a disparu. Et je sais pertinemment que ça n'avait rien à voir avec Kaban et Kollontay.\n\nSi tu ne veux pas disparaître comme lui, cherche l'appartement de l'ancien champion. Je crois qu'il y a encore des choses intéressantes là-bas. Il traînait souvent avec les contrebandiers dans les dortoirs des douanes. Peut-être que tu trouveras des indices pour accéder à l'appartement.",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "Tu veux demander directement à Ref ? Eh bien, ça a été un plaisir de te connaître.",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "Contre la conscience - Partie 2",
"66058ccde8e4f17985230807 name": "Contre la conscience - Partie 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "Donc, tu dis que tu étais dans l'appartement de l'ancien champion ? Très bien. Je vais faire comme si cela n'était jamais arrivé. Rappelle-toi juste que la curiosité a tué le chat. Et le dernier champion aussi. C'était un bon gars, je l'aimais bien, mais il est devenu trop tendre, a perdu son mordant.\n\nTu devrais t'entraîner davantage, au lieu de traîner dans la ville. Sinon, ton classement va commencer à chuter.",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "Voilà ! Le temps doit être consacré à améliorer tes compétences. Qui sait ce qui peut arriver si tu ne le fais pas ?",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "Entre deux feux",
"66058ccf06ef1d50a60c1f48 name": "Entre deux feux [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "Donc tu as vu un cadavre. Tu l'as cherché ? Tu as vérifié autour de lui ? Je souligne simplement que tu es aveugle. Le champion, pour autant que je sache, tenait un journal. Oui, comme un adolescent, mais cela joue en ta faveur. \n\nPourquoi ne pas y retourner et y regarder de plus près ? Il doit y avoir plus d'informations dans le journal sur Ref, des dossiers sur lui. Fais ça si tu veux arrêter d'être remplaçable dans l'arène. \n\nEt encore une chose : si tu m'apportes des informations sur Ref qui seront dignes de mon temps, je te paierai bien.",
"66058ccf06ef1d50a60c1f48 failMessageText": "Tu souhaites rester dans les jupons de Réf ? Fais bien comme tu veux.",
"66058ccf06ef1d50a60c1f48 successMessageText": "Bien joué, content que tu aies saisi ton destin par les couilles.\n\nPas un mot de ça à Ref.",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "Décisions, Décisions",
"66058cd19f59e625462acc90 name": "Décisions, Décisions [PVP ZONE]",
"66058cd19f59e625462acc90 description": "J'ai entendu des rumeurs... Rumeurs très désagréables. Ils disent que tu essais d'enterrer mon entreprise.\n\nÉcoute, nous nous connaissons depuis un moment. Tu es comme un frère pour moi ! Ne faites pas quelque chose que tu regretteras plus tard. Moins tu en sais, mieux tu dormiras, tu comprends ?\n\nJusqu'à ce que j'aie absolument confiance en toi, mes hommes vont te surveiller. Je ne veux pas que tu fasses des cascades, champion. Et si tu trouves quelque chose lors de ton petit rendez-vous avec le vieux champion, apporte-le-moi. Alors nous pourrons oublier cet heureux petit accident.",
"66058cd19f59e625462acc90 failMessageText": "Ils tont braqué et tout piqué, hein ? Me prends pas pour un con ! Il est où, ce putain de journal, maintenant ? Bordel de merde… Peu importe, je men occuperai plus tard.",
"66058cd19f59e625462acc90 successMessageText": "Tu as fait le bon choix. Je n'ai jamais douté de toi, frère. D'accord, plus d'affaires amusantes à partir de maintenant, tu m'entends ?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "Elle est énorme ! J'espère que ce n'était pas trop galère. Bien, laisse-la ici. Tu m'aides énormément, et je ne l'oublierai pas. Merci.",
"6744a964dc1b1e2ee134ffeb": "Livrez l'objet : Batterie militaire 6-STEN-140-M",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "Me casser le dos pour vous donc... ok, je vais trouver un moyen.",
"6744a728352b4da8e003eda9 declinePlayerMessage": "Ouais, non. Une fois, j'ai dû me coltiner une batterie comme ça pendant des heures. Désolé, mais je ne vais pas le refaire.",
"6744a728352b4da8e003eda9 completePlayerMessage": "Voilà. C'est clairement la dernière fois que je fais une livraison de batterie de char.",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.",
"6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "Here's your stuff. This is the last time I'm doing tank battery delivery. Surely.",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "Tes sûr que cest bien ça ? OK, je le sens, cest bien celui-là !\n\nRagman ma parlé des sous-sols de la station thermale hier. Jai même dû le faire picoler sévère pour quon change enfin de sujet, putain. Bref, apparemment, y avait un ancien abri anti-bombe soviétique sous la station, et Ref voulait y monter une nouvelle arène, pour un public VIP. Je crois que Tagilla était aussi impliqué… Non, c’était autre chose…\n\nEn tout cas, pour cette arène, Ref avait commandé pas mal de matos à Ragman. Tout était presque prêt. Et là, dun coup, le mec qui gérait lendroit sest désisté. Pourquoi ? Va savoir.\n\nRagman la super mal pris que le projet tombe à leau. Mais il avait déjà livré une partie du matos, et il a clairement utilisé les cartes daccès que tu cherches. Va lui parler directement, jme rappelle pas de grand-chose dhier. Et merci pour la bouteille, au fait.",
"67a0da26a3b8d254347b8634": "Livrez une bouteille de gnôle Bambi féroce",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "Vous n'êtes pas arrivé jusqu'à \"l'échantillon test\" hier. Tenez, Ragman m'a demandé de vous le donner pour que vous le testiez vous-même.",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "Tiens d'ailleurs, je voulais te demander, tu as déjà entendu parler des installations sous la station thermale et des cartes pour y accéder ?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "Cadeau surprise",
"67e993b1ac26bf29380a320b name": "Cadeau surprise [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "Jai entendu dire que tu tes mêlé de cette affaire avec Fence et Ref. Alors bien sûr, tu décides de venir me voir. Tu veux ten prendre à Ref ? Hmm, ça pourrait m’être utile. Ramène-moi des informations compromettantes sur lui, et je saurai comment les exploiter.",
"67e993b1ac26bf29380a320b failMessageText": "Du coup, pourquoi venir me voir à la base si c'est pour donner les infos à l'un mais pas l'autre ?",
"67e993b1ac26bf29380a320b successMessageText": "Content que tu comprennes avec qui il est plus avantageux d'être allié.",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "Vous aurez vos infos.",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "Voilà tout ce que j'ai pu trouver sur Ref.",
"67e993f5ed537409f009da75 name": "Récompense différée",
"67e993f5ed537409f009da75 name": "Récompense différée [PVP ZONE]",
"67e993f5ed537409f009da75 description": "Tu tes bien ridiculisé avec ces preuves, c’était franchement malaisant. Mais bon, jai donné ma parole : tu auras ton putain de conteneur. Cela dit, vu comment tout ça a tourné, je vais te demander autre chose maintenant.",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "Très bien, tas mérité ta récompense. Mais sois bien conscient que je ne tolérerai plus aucune de tes conneries. Si tu recommences à fouiner, tu finiras comme ce vieux champion.",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Argent facile - Partie 1 [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Salut. J'ai un boulot pour toi. Un de mes amis est à la recherche des bonnes personnes pour son entreprise. Je ne connais pas les tenants et les aboutissants, c'est juste la première étape du recrutement, pour ainsi dire. Je vois que tu es intéressé. Tu as déjà entendu parler des Arènes ? Tu devrais mettre des prospectus dans de Tarkov. Genre « Venez-y jeter un coup d'œil », une connerie du genre, tu vois. Hé, les gens sérieux commencent toujours petit ! Tu récupères les dépliants dans le camp USEC des bois, comment ils se sont retrouvés là-bas ? Qui sait ? Mon contact pourrait avoir de bons alliés. Une fois que tu as le colis, promene-toi et colle ces prospectus partout dans la ville. Nah, je déconne. Apporte-les aux endroits spécifiés, ils se débrouilleront avec.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "C'est fait ? Alors je transmets. Voici quelques goodies en attendant.",
"6834145ebc1f443d7603c8ab": "Déposez le poster \"Bison VS Undertaker\" dans les quartiers d'habitation de la base scav des douanes",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Argent facile - Partie 2 [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "Bonjour, champion ! Un de mes amis t'a donné une petite mission d'essai. Maintenant, j'ai décidé de te rencontrer en personne. Les gens m'appellent Ref. Je mets en place les arènes et j'amasse les gros dollars, ha ! De toute évidence, cela ne te dérange pas de gagner de l'argent, et j'ai désespérément besoin de nouveau personnel. Les affaires sont en plein essor et je suis à court de main-d'œuvre. Nous nous agrandissons ! Nous avons prévu un autre combat bientôt. Comme on disait dans la Rome antique, « le peuple exige du pain et des cirques ». Sur ce dernier point c'est géré, mais le pain est en retard. Juste une petite rupture d'approvisionnement, ne t'inquiéte pas. Apporte-moi juste de la nourriture et de l'alcool pour le public.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Tout ce que tu as apporté a déjà été envoyé dans les tribunes. Bien joué.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Livrez l'objet trouvé en raid : Bouteille de bière \"Pevko Light\"",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "Équilibrage - Partie 1 [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "Équilibrage - Partie 2 [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Surprise [PVE ZONE]",
"68341b407559f4e6d50bc0ce description": "J'ai eu une super idée pour rendre l'arène encore meilleure. Et j'ai besoin de ton aide.\n\nJe dois trouver des plaques balistiques pour un gars. C'est un artiste qui se produit régulièrement, donc il est temps de lui donner une mise à niveau pour enflammer la foule. C'est ça, les spectacles : si tu n'ajoutes pas de bois à temps, le feu s'éteint.\n\nEh bien, maintenant, va me chercher des plaques balistiques.\n\nLa foule va crier quand elle le verra !",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "Juste ce dont j'avais besoin ! Il ne reste pas grand-chose. Tout le monde sera ravi de voir les résultats, je te le promets ! Voici un casque en récompense. Son dernier propriétaire en a un meilleur maintenant, ha !",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Créer une diversion - Partie 1 [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "Ha, tu aurais dû voir le chaos quand ils ont trouvé les pains ! Quel spectacle ! C'est vraiment dommage qu'on n'ait pas tout filmé... Tu as fait du bon travail. Voici ta récompense.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Créer une diversion - Partie 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "Tu ne regardes pas sur qui tu tires ?! J'avais tellement d'espoirs en toi.",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "Vers les sommets ! - Partie 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "Je n'ai jamais douté de toi une seconde, frère ! Mais souviens-toi, nous sommes ici pour divertir les gens. Nous avons besoin d'un plus grand spectacle ! Parfois, on dirait que tu tires juste sur des canettes, tu sais.",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "Vers les sommets ! - Partie 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "Tu es sous mon aile à partir de maintenant, frère. Je vais m'assurer que tu progresses bien, mais tu vas devoir t'équiper le cul plus souvent.\n\nCommençons par les bases. L'Arène est à Tarkov, mais les plus gros sponsors sont à l'étranger. Ils regardent chaque match, parient, et lancent de l'argent sur leurs favoris. Et toi, tu dois attirer l'attention de ces gros bonnets. Montre-leur que tu en vaux la peine. Fais-toi un nom. Une seule victoire ne suffira pas. Montre-leur que tu es capable d'offrir un spectacle palpitant !",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "Je vois les progrès que tu fais ! On commence à parler de toi à l'étranger. Les gens s'intéressent. C'est signe que tu es sur la bonne voie !",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "Vers les sommets ! - Partie 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "Tu fais du bon travail ! Mais c'est encore trop tôt pour t'arrêter. Montre-toi plus souvent, impressionne le public. Fais-toi remarquer. Deviens celui dont tout le monde parle, celui qu'ils viennent voir. Ensuite, l'argent suivra, puis les autres plaisirs : voitures, filles... Même si Tarkov en manque un peu sur ce dernier point.\n\nQuoi qu'il en soit, l'Arène est une excellente opportunité de carrière en ce moment, ha !",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "Et te voilà maintenant un pas plus près des grandes ligues ! Respect, frère.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "Vers les sommets ! - Partie 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "Comment ça va ? Prêt pour la bataille ? Prêt à briller encore une fois dans l'Arène ? Prêt à déchiqueter des enfoirés ? Les chances sont toujours contre toi, alors ne déçois pas le public !\n\nEn parlant de ça, tu as un peu d'argent ? Tu dois parier sur toi-même et ensuite gagner six fois. Tu feras des tonnes de fric, et tu seras célèbre. Apporte l'argent, je m'occupe de tout. Juste un avertissement : si tu perds cinq fois, tu recommences à zéro.",
"683421515619c8e2a9031511 failMessageText": "Oh mec, tu y étais presque. Réessaie, le public semble toujours t'apprécier.",
"683421515619c8e2a9031511 successMessageText": "Voici ton chèque. J'ai directement déduit tous mes services : les pots-de-vin des adversaires, les frais, et tout ça. Quoi, tu pensais que je travaillais gratuitement ?",
"683421515619c8e2a9031514": "Livrez des Roubles depuis la réserve EFT",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Condition d'échec : Perdez 5 matchs",
"683421515619c8e2a903151b": "Condition d'échec : Perdez 6 matchs",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "Vers les sommets ! - Partie 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "J'ai de bonnes nouvelles ! Excellentes nouvelles, en fait ! J'espère que tu as déjà choisi un petit appartement dans le quartier chic de Tarkov, car tu l'auras bientôt avec tout cet argent ! Je plaisante. De toute façon, toutes les maisons de ces quartiers vont s'effondrer bientôt.\n\nQuoi qu'il en soit, des personnes très puissantes de l'autre côté de la frontière s'intéressent à toi. Puissantes et riches. Je ne peux pas te dire leurs noms, c'est un secret d'affaires, et je ne vais pas violer ce que j'ai signé. Alors, ces gens sont prêts à te prendre sous leur aile et à te sponsoriser généreusement, mais ils veulent d'abord des garanties.\n\nTu dois devenir le champion. Vole haut, surpasse les autres. Tu vas devoir passer plus de temps dans l'Arène. Je vois dans tes yeux que tu es prêt.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "Tu es vraiment doué. Un homme très célèbre en France, je ne te dirai pas son nom pour des raisons de confidentialité, s'intéresse à toi. Il zozote comme pas possible, mais il propose une belle somme d'argent. J'ai déjà organisé ton sponsoring.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Contre la conscience - Partie 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Salut. J'ai entendu dire que tu travailles maintenant pour Ref. Je te surveille depuis un moment.\n\nJe connaissais un gars qui s'était retrouvé dans la même situation que toi. Il a été le champion de Ref pendant un certain temps, puis tout à coup, il a disparu. Et je sais pertinemment que ça n'avait rien à voir avec Kaban et Kollontay.\n\nSi tu ne veux pas disparaître comme lui, cherche l'appartement de l'ancien champion. Je crois qu'il y a encore des choses intéressantes là-bas. Il traînait souvent avec les contrebandiers dans les dortoirs des douanes. Peut-être que tu trouveras des indices pour accéder à l'appartement.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "Tu veux demander directement à Ref ? Eh bien, ça a été un plaisir de te connaître.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Découvrez ce qui est arrivé au champion",
"6834233fecd5cf3a440d8564": "Survivez et quittez la zone",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Contre la conscience - Partie 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "Donc, tu dis que tu étais dans l'appartement de l'ancien champion ? Très bien. Je vais faire comme si cela n'était jamais arrivé. Rappelle-toi juste que la curiosité a tué le chat. Et le dernier champion aussi. C'était un bon gars, je l'aimais bien, mais il est devenu trop tendre, a perdu son mordant.\n\nTu devrais t'entraîner davantage, au lieu de traîner dans la ville. Sinon, ton classement va commencer à chuter.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "Voilà ! Le temps doit être consacré à améliorer tes compétences. Qui sait ce qui peut arriver si tu ne le fais pas ?",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Décisions, Décisions [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "J'ai entendu des rumeurs... Rumeurs très désagréables. Ils disent que tu essais d'enterrer mon entreprise.\n\nÉcoute, nous nous connaissons depuis un moment. Tu es comme un frère pour moi ! Ne faites pas quelque chose que tu regretteras plus tard. Moins tu en sais, mieux tu dormiras, tu comprends ?\n\nJusqu'à ce que j'aie absolument confiance en toi, mes hommes vont te surveiller. Je ne veux pas que tu fasses des cascades, champion. Et si tu trouves quelque chose lors de ton petit rendez-vous avec le vieux champion, apporte-le-moi. Alors nous pourrons oublier cet heureux petit accident.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "Tu as fait le bon choix. Je n'ai jamais douté de toi, frère. D'accord, plus d'affaires amusantes à partir de maintenant, tu m'entends ?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Livrez les informations trouvées",
"6834254f2f0e2a7eb90b62f4": "Condition d'échec : Apportez les documents à Fence",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Entre deux feux [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "Donc tu as vu un cadavre. Tu l'as cherché ? Tu as vérifié autour de lui ? Je souligne simplement que tu es aveugle. Le champion, pour autant que je sache, tenait un journal. Oui, comme un adolescent, mais cela joue en ta faveur. \n\nPourquoi ne pas y retourner et y regarder de plus près ? Il doit y avoir plus d'informations dans le journal sur Ref, des dossiers sur lui. Fais ça si tu veux arrêter d'être remplaçable dans l'arène. \n\nEt encore une chose : si tu m'apportes des informations sur Ref qui seront dignes de mon temps, je te paierai bien.",
"683425dd8f5b18d29a05d9d1 failMessageText": "Tu souhaites rester dans les jupons de Réf ? Fais bien comme tu veux.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Localisez la planque de l'ancien champion",
"683425dd8f5b18d29a05d9d4": "Retournez dans la planque de l'ancien champion dans les douanes",
"683425dd8f5b18d29a05d9d6": "Localisez et obtenez les informations compromettantes sur Ref",
"683425dd8f5b18d29a05d9d8": "Livrez les informations trouvées",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift [PVE ZONE]",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward [PVE ZONE]",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "Hand over the item: Lega Medal",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa 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": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Tout est clair, tu dis ? Bon travail, soldat.",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "Higher and Higher",
"6842c27a38482d35ac0bd847 description": "Earn the Prestige level 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Scav upper 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Adik Jogginghose",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "Sportsachen",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Crye Precision AVS Plattenträger (Tagilla Version)",
"609e860ebd219504d8507525 ShortName": "AVS TE",
"609e860ebd219504d8507525 Description": "Tagilla's well-worn plate carrier based on the AVS module system by Crye Precision. Equipped with a front panel with three magazine pouches. And that's pretty much it. Nothing more, nothing less.",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "SIG Sauer ROMEO8T reflex sight",
"60a23797a37c940de7062d02 ShortName": "ROMEO8T",
"60a23797a37c940de7062d02 Description": "The ROMEO8T reflex sight, designed for precision shooting for modern sporting rifles and shotguns. Manufactured by SIG Sauer.",
@@ -15116,6 +15122,9 @@
"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.",
"68406efe068a2d99940c1ce3 Name": "SSD Laufwerk",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "A solid state drive. Used to store data with enhanced read and write performance.",
"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.",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "Grenadier t-shirt",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Merch t-shirt",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "Auto zur Straße der Militärbasis",
" Voip/DisabledForOffline": "VoIP ist im Offline-Modus nicht verfügbar.",
" kg": " kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "Die Auflösung wurde verändert. Möchtest du die aktuelle Auflösung beibehalten?",
"Resource": "INHALT",
"RestSpace": "WOHNBEREICH",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "Rückkehr Rate:",
"Revert": "RÜCKGÄNGIG",
"Revert your settings to default?": "Bist du dir sicher, dass du deine Einstellungen auf die Standardwerte zurücksetzen möchtest?",
@@ -18970,6 +19015,21 @@
"TeamTab": "Teams",
"Teamkills": "Teamkills",
"Terrain quality:": "Umgebungsqualität:",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "Die Einstellungen der Texturqualität werden nach Neustart des Spiels übernommen.",
"Texture quality:": "Texturenqualität:",
"That item cannot be insured": "Dieser Gegenstand kann nicht versichert werden.",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "Mach ich. <color=grey><i>(akzeptiere Aufgabe „{0}“)</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "Erledigt. <color=grey><i>(schließe Aufgabe „{0}“ ab)</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "Das hab ich gefunden. <color=grey><i>(übergebe „{0}“)</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "Here. <color=grey><i>(hand over item \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "An diesen Orten kann ich dich absetzen. Such eine eins aus.",
"Trading/Dialog/PlayerTaxi/Name": "Mitfahren",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Alles klar, Endstation - Rodina-Kino. Hast du das Geld dafür?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "GELBES TEAM",
"starvDeaths": "Tode durch Hunger",
"stationHeals": "Stationäre Heilungen",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "Smugglers' Basement",
"suicides": "Selbstmorde",
"survClass": "Klasse",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "Leicht verdientes Geld - Teil 1",
"66058cb22cee99303f1ba067 name": "Leicht verdientes Geld - Teil 1 [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "Na? Ich habe einen Job für dich. Ein Freund von mir sucht die richtigen Leute für sein Geschäft. Ich kenne mich nicht aus, sozusagen nur die erste Phase der Rekrutierung. Wie ich sehe, bist du interessiert.\n\nHast du schon etwas über diese Arena gehört? Du solltest Flugblätter in Tarkov aufhängen. So was wie: „Komm und sieh's dir an“, so was in der Art. Hey, seriöse Leute fangen immer klein an! Du holst die Plakate im USEC-Camp auf Woods ab... hm, wie die da gelandet sind? Wer weiß das schon? Mein Kontakt könnte gute Verbündete haben. Sobald du das Zeug hast, gehst du rum und klebst die Plakate in der ganzen Stadt auf. Alles gut, nur ein Scherz. Bring die Plakate zu den angegebenen Orten, den Rest finden die Leute schon heraus.",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "Alles erledigt? Dann werde ich es weitergeben. Hier sind ein paar Kleinigkeiten in der Zwischenzeit.",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "Leicht verdientes Geld - Teil 2",
"66058cb5ae4719735349b9e8 name": "Leicht verdientes Geld - Teil 2 [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "Hallo, Champion! Ein Freund von mir hat dir einen kleinen Probeauftrag gegeben. Jetzt habe ich beschlossen, dich persönlich zu treffen. Man nennt mich Ref. Ich bin der Host der Arena und des großen Geldes, ha!\n\nOffensichtlich macht es dir nichts aus, Geld zu verdienen, und ich brauche dringend neues Personal. Das Geschäft boomt, und ich habe zu wenig Arbeitskräfte. Wir wollen expandieren!\n\nWir haben bald einen weiteren Wettkampf geplant. Wie man im alten Rom zu sagen pflegte: „Das Volk verlangt Brot und Zirkus.“ Letzteres ist bereits organisiert, aber das Brot kommt zu spät. Eine kleine Unterbrechung der Lieferkette, aber keine Sorge. Besorg mir nur etwas zu essen und zu saufen für die Zuschauer.",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "Alles, was du mitgebracht hast, ist bereits an die Sitzplätze verteilt worden. Gut gemacht.",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "Balancing - Teil 1",
"66058cb7c7f3584787181476 name": "Balancing - Teil 1 [PVP ZONE]",
"66058cb7c7f3584787181476 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "Balancing - Teil 2",
"66058cb9e8e4f17985230805 name": "Balancing - Teil 2 [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "Überraschung",
"66058cbb06ef1d50a60c1f46 name": "Überraschung [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "Ich habe eine tolle Idee, um die Arena noch besser zu machen. Und ich brauche deine Hilfe.\n\nIch muss ein paar Rüstungsplatten für einen Typen finden. Er tritt häufig auf, also ist es an der Zeit, ihm ein Upgrade zu verpassen, um die Menge zu begeistern. So ist das mit Shows, wenn man nicht rechtzeitig Holz nachlegt, geht das Feuer aus.\n\nNun, jetzt geh und besorg mir ein paar Rüstungsplatten.\n\nDie Menge wird kreischen, wenn sie ihn sieht!",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "Genau das, was ich brauchte! Viel mehr bleibt nicht zu tun. Alle werden sich freuen, wenn sie das Ergebnis sehen, das verspreche ich! Hier ist ein Helm als Belohnung. Sein letzter Besitzer hat jetzt einen besseren, ha!",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "Ablenkungsmanöver - Teil 1",
"66058cbd9f59e625462acc8e name": "Ablenkungsmanöver - Teil 1 [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "Ha, du hättest das Chaos sehen sollen, als sie den Sprengstoff gefunden haben! Was für eine Show! Es ist eine verdammte Schande, dass wir das Ganze nicht gefilmt haben... Du hast gute Arbeit geleistet. Hier ist deine Belohnung.",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "Ablenkungsmanöver - Teil 2",
"66058cbf2f19c31a5a1337ec name": "Ablenkungsmanöver - Teil 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"66058cbf2f19c31a5a1337ec failMessageText": "Siehst du nicht, auf wen du schießt?! Ich hatte so große Hoffnungen in dich gesetzt.",
"66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "Auf zu großen Höhen! - Teil 1",
"66058cc1da30b620a34e6e86 name": "Auf zu großen Höhen! - Teil 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "Ich habe nicht eine Sekunde an dir gezweifelt, Bruder! Aber denk dran, wir sind hier, um die Leute zu unterhalten. Wir brauchen eine größere Show!",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "Auf zu großen Höhen! - Teil 2",
"66058cc208308761cf390993 name": "Auf zu großen Höhen! - Teil 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "Von nun an bist du unter meinen Fittichen, Bruder. Ich sorge dafür, dass du gute Fortschritte machst, aber du musst deinen Arsch öfter in Bewegung setzen.\n\nFangen wir mit den Grundlagen an. Die Arena ist in Tarkov, aber die größten Sponsoren sind in Übersee. Sie sehen sich jedes Spiel an, schließen Wetten ab und setzen Geld auf die Favoriten. Und du musst einige dieser hohen Tiere für dich interessieren. Mach sie auf dich aufmerksam, zeig ihnen, dass du es wert bist. Mach dir einen Namen. Ein Sieg allein reicht nicht aus, um das zu erreichen. Zeig ihnen, dass du eine aufregende Performance hinlegen kannst!",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "Ich sehe die Fortschritte, die du machst! Man beginnt, im Ausland über dich zu sprechen. Die Leute sind interessiert. Das ist ein Zeichen dafür, dass du das Richtige tust!",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "Auf zu großen Höhen! - Teil 3",
"66058cc5bb83da7ba474aba9 name": "Auf zu großen Höhen! - Teil 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "Du machst das großartig! Aber es ist zu früh, um aufzuhören. Zeige dich öfter, beeindrucke das Publikum. Heb dich ab. Werde derjenige, über den sie reden, derjenige, den sie sehen wollen. Dann wird das Geld kommen, und dann kommen andere Dinge: Autos, Mädchen... Obwohl es bei Tarkov ein wenig an Letzterem mangelt.\n\nJedenfalls ist die Arena im Moment eine großartige Karrierechance, ha!",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "Und jetzt bist du einen Schritt näher an den ganz großen Ligen! Respekt, Bruder.",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "Auf zu großen Höhen! - Teil 4",
"66058cc72cee99303f1ba069 name": "Auf zu großen Höhen! - Teil 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "Wie ist die Stimmung? Bereit für die Schlacht? Bereit, noch einmal in der Arena zu glänzen? Bereit, ein paar Mistkerle zu zerfetzen? Die Chancen stehen immer noch schlecht für dich, also lass das Publikum nicht im Stich!\n\nWo wir gerade dabei sind. Hast du etwas Geld? Du musst auf dich selbst wetten und dann sechsmal gewinnen. Du wirst tonnenweise Geld machen und berühmt werden. Bring das Geld mit, ich werde alles organisieren. Aber sei gewarnt: Wenn du fünfmal verlierst, fängst du wieder von vorne an.",
"66058cc72cee99303f1ba069 failMessageText": "Oh Mann, du hast es fast geschafft. Versuch es noch einmal, das Publikum scheint dich immer noch zu mögen.",
"66058cc72cee99303f1ba069 successMessageText": "Hier ist dein Gehaltsscheck. Ich habe gleich alle meine Leistungen davon abgezogen: Bestechung von Gegnern, Honorare und so weiter. Dachtest du etwa, ich arbeite umsonst?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "Auf zu großen Höhen! - Teil 5",
"66058cc9ae4719735349b9ea name": "Auf zu großen Höhen! - Teil 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "Ich habe gute Nachrichten! Ausgezeichnete Nachrichten sogar! Ich hoffe, du hast dir schon eine kleine Wohnung in Tarkovs Nobelviertel ausgesucht, denn mit all dem Geld wirst du dir das schon bald leisten können! Kleiner Scherz. Alle Häuser in diesen Vierteln werden sowieso bald in sich zusammenfallen.\n\nWie auch immer, ein paar sehr mächtige Leute von jenseits der Grenze sind an dir interessiert. Mächtig und wohlhabend. Ich kann dir ihre Namen nicht nennen, das ist ein Geschäftsgeheimnis, und ich werde mich an mein Wort halten. Diese Leute sind bereit, dich unter ihre Fittiche zu nehmen und dich massiv zu unterstützen, aber zuerst wollen sie Garantien.\n\nDu musst der Champion werden. Fliege hoch, erhebe dich über den Rest. Du wirst mehr Zeit in der Arena verbringen müssen. Ich kann es in deinen Augen sehen, dass du bereit bist.",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "Du bist wirklich sehr gut. Ein sehr berühmter französischer Mann ist an dir interessiert, Namen kann ich aber nicht nennen, Privatsphäre und so. Er lispelt stark, aber er bietet viel Geld. Ich habe mich bereits um dein Sponsoring gekümmert.",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "Entgegen jeglichen Gewissens - Teil 1",
"66058ccbc7f3584787181478 name": "Entgegen jeglichen Gewissens - Teil 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "Hallo. Ich habe gehört, du arbeitest jetzt für Ref. Ich beobachte dich schon seit einer Weile. \n\nIch kannte mal einen Mann, der genau wie du in die gleichen Dinge verwickelt war. Er war eine Zeit lang Refs früherer Champion und verschwand dann ganz plötzlich. Und ich weiß genau, dass das nichts mit Kaban und Kollontay zu tun hat. \n\nWenn du nicht auf die gleiche Weise verschwinden willst wie dieser Typ, dann schau dich nach der Wohnung des letzten Champions um. Ich glaube, dass dort etwas Interessantes hinterlassen worden ist. Der Champion hing immer mit den Schmugglern in den Wohnheimen des Zollgeländes herum. Vielleicht findest du ein paar Hinweise, wie du in die Wohnung kommst.",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "Willst du Ref selbst fragen? Nun, es war schön, dich gekannt zu haben.",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "Entgegen jeglichen Gewissens - Teil 2",
"66058ccde8e4f17985230807 name": "Entgegen jeglichen Gewissens - Teil 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "Du sagst also, dass du in der Wohnung des letzten Champions warst? Also gut. Ich werde so tun, als wäre das nie passiert. Aber denk dran: „Curiosity killed the cat“, wie man so schön sagt. Genau wie beim letzten Champion. Er war ein guter Kerl, ich mochte ihn, aber er wurde weich, verlor seinen Reiz.\n\nDu solltest mehr trainieren und nicht in der Stadt herumlaufen. Sonst sinkt dein Rang.",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "Genau so! Man sollte seine Zeit damit verbringen, seine Fähigkeiten zu verbessern. Wer weiß, was passiert, wenn man das nicht tut?",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "Zwischen Zwei Feuern",
"66058ccf06ef1d50a60c1f48 name": "Zwischen Zwei Feuern [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "Du hast also eine Leiche gesehen. Hast du sie untersucht? Hast du die Umgebung abgecheckt? Ich weise nur darauf hin, dass du blind bist. Der Champion hat, soweit ich weiß, ein Tagebuch geführt. Ja, wie ein Teenager, aber das ist eigentlich ein Vorteil für dich.\n\nWarum gehst du nicht noch mal hin und schaust dir das genauer an? In dem Tagebuch muss es mehr Informationen über Ref geben, etwas Unerfreuliches über ihn. Tu das, wenn du in der Arena nicht länger verzichtbar sein willst.\n\nUnd noch etwas: Wenn du mir Informationen über Ref bringst, die meine Zeit wert sind, werde ich dich gut bezahlen.",
"66058ccf06ef1d50a60c1f48 failMessageText": "Du willst unter dem Rock von Ref bleiben? Dann mach das.",
"66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "Entscheidungen, Entscheidungen",
"66058cd19f59e625462acc90 name": "Entscheidungen, Entscheidungen [PVP ZONE]",
"66058cd19f59e625462acc90 description": "Ich habe Gerüchte gehört... Sehr unangenehme Gerüchte. Es heißt, du willst mir das Geschäft vermasseln.\n\nHör zu, wir kennen uns schon eine Weile. Du bist wie ein Bruder für mich! Tu nichts, was du später bereuen könntest. Je weniger du weißt, desto besser schläfst du, verstehst du?\n\nBis ich dir absolut vertraue, lasse ich dich von meinen Leuten beobachten. Ich will nicht, dass du irgendwelche Stunts abziehst, Champ. Und wenn du bei deinem Rendezvous mit dem alten Champion etwas findest, bring es zu mir. Dann können wir diesen glücklichen kleinen Unfall vergessen.",
"66058cd19f59e625462acc90 failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"66058cd19f59e625462acc90 successMessageText": "Du hast dich richtig entschieden. Ich habe gar nicht an dich gezweifelt, Bruder. Keine fragwürdigen Geschäfte mehr, verstanden?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.",
"6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.",
"6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.",
"6744a728352b4da8e003eda9 completePlayerMessage": "Here's your stuff. This is the last time I'm doing tank battery delivery. Surely.",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.",
"6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "Here's your stuff. This is the last time I'm doing tank battery delivery. Surely.",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "Are you sure this is it? Okay, I can smell it, that's definitely the one! \n\nRagman told me about the health resort's cellars yesterday, I even had to fucking get him wasted so we could finally change the subject. Anyway, there was a Soviet bomb shelter under the health resort, and Ref was going to organize a new arena there, for VIP audiences. I think it also involved Tagilla somehow... No, it was something else...\n\nAnyway, for this arena, Ref organized a big gear acquisition from Ragman, everything was almost ready. And then our host guy suddenly backed out. Why? Who the fuck knows.\n\nRagman was really upset that the idea had fallen through. But he'd already delivered some of the gear, and he definitely used those keycards you're looking for. You better ask him yourself, I don't remember much from yesterday. Thanks for the drink, by the way.",
"67a0da26a3b8d254347b8634": "Hand over a Bottle of Fierce Hatchling moonshine",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "You didn't make it to the \"test sample\" yesterday. Here, Ragman asked me to give it to you so that you could test it yourself.",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "By the way, I wanted to ask you: have you heard anything about the facility under the health resort and the keycards to access it?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "Surprise Gift",
"67e993b1ac26bf29380a320b name": "Surprise Gift [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"67e993b1ac26bf29380a320b failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"67e993b1ac26bf29380a320b successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "You'll get your info.",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "Here's all I could find on Ref.",
"67e993f5ed537409f009da75 name": "Postponed Reward",
"67e993f5ed537409f009da75 name": "Postponed Reward [PVP ZONE]",
"67e993f5ed537409f009da75 description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Leicht verdientes Geld - Teil 1 [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Na? Ich habe einen Job für dich. Ein Freund von mir sucht die richtigen Leute für sein Geschäft. Ich kenne mich nicht aus, sozusagen nur die erste Phase der Rekrutierung. Wie ich sehe, bist du interessiert.\n\nHast du schon etwas über diese Arena gehört? Du solltest Flugblätter in Tarkov aufhängen. So was wie: „Komm und sieh's dir an“, so was in der Art. Hey, seriöse Leute fangen immer klein an! Du holst die Plakate im USEC-Camp auf Woods ab... hm, wie die da gelandet sind? Wer weiß das schon? Mein Kontakt könnte gute Verbündete haben. Sobald du das Zeug hast, gehst du rum und klebst die Plakate in der ganzen Stadt auf. Alles gut, nur ein Scherz. Bring die Plakate zu den angegebenen Orten, den Rest finden die Leute schon heraus.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "Alles erledigt? Dann werde ich es weitergeben. Hier sind ein paar Kleinigkeiten in der Zwischenzeit.",
"6834145ebc1f443d7603c8ab": "Platziere die „Bison VS Undertaker“-Plakate in den Wohnquartiere der Scavbasis in Customs",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Leicht verdientes Geld - Teil 2 [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "Hallo, Champion! Ein Freund von mir hat dir einen kleinen Probeauftrag gegeben. Jetzt habe ich beschlossen, dich persönlich zu treffen. Man nennt mich Ref. Ich bin der Host der Arena und des großen Geldes, ha!\n\nOffensichtlich macht es dir nichts aus, Geld zu verdienen, und ich brauche dringend neues Personal. Das Geschäft boomt, und ich habe zu wenig Arbeitskräfte. Wir wollen expandieren!\n\nWir haben bald einen weiteren Wettkampf geplant. Wie man im alten Rom zu sagen pflegte: „Das Volk verlangt Brot und Zirkus.“ Letzteres ist bereits organisiert, aber das Brot kommt zu spät. Eine kleine Unterbrechung der Lieferkette, aber keine Sorge. Besorg mir nur etwas zu essen und zu saufen für die Zuschauer.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Alles, was du mitgebracht hast, ist bereits an die Sitzplätze verteilt worden. Gut gemacht.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Übergebe im Raid gefundenes „Pevko Light“ Bier",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "Balancing - Teil 1 [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "Balancing - Teil 2 [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Überraschung [PVE ZONE]",
"68341b407559f4e6d50bc0ce description": "Ich habe eine tolle Idee, um die Arena noch besser zu machen. Und ich brauche deine Hilfe.\n\nIch muss ein paar Rüstungsplatten für einen Typen finden. Er tritt häufig auf, also ist es an der Zeit, ihm ein Upgrade zu verpassen, um die Menge zu begeistern. So ist das mit Shows, wenn man nicht rechtzeitig Holz nachlegt, geht das Feuer aus.\n\nNun, jetzt geh und besorg mir ein paar Rüstungsplatten.\n\nDie Menge wird kreischen, wenn sie ihn sieht!",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "Genau das, was ich brauchte! Viel mehr bleibt nicht zu tun. Alle werden sich freuen, wenn sie das Ergebnis sehen, das verspreche ich! Hier ist ein Helm als Belohnung. Sein letzter Besitzer hat jetzt einen besseren, ha!",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Ablenkungsmanöver - Teil 1 [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "Ha, du hättest das Chaos sehen sollen, als sie den Sprengstoff gefunden haben! Was für eine Show! Es ist eine verdammte Schande, dass wir das Ganze nicht gefilmt haben... Du hast gute Arbeit geleistet. Hier ist deine Belohnung.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Ablenkungsmanöver - Teil 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "Siehst du nicht, auf wen du schießt?! Ich hatte so große Hoffnungen in dich gesetzt.",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "Auf zu großen Höhen! - Teil 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "Ich habe nicht eine Sekunde an dir gezweifelt, Bruder! Aber denk dran, wir sind hier, um die Leute zu unterhalten. Wir brauchen eine größere Show!",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "Auf zu großen Höhen! - Teil 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "Von nun an bist du unter meinen Fittichen, Bruder. Ich sorge dafür, dass du gute Fortschritte machst, aber du musst deinen Arsch öfter in Bewegung setzen.\n\nFangen wir mit den Grundlagen an. Die Arena ist in Tarkov, aber die größten Sponsoren sind in Übersee. Sie sehen sich jedes Spiel an, schließen Wetten ab und setzen Geld auf die Favoriten. Und du musst einige dieser hohen Tiere für dich interessieren. Mach sie auf dich aufmerksam, zeig ihnen, dass du es wert bist. Mach dir einen Namen. Ein Sieg allein reicht nicht aus, um das zu erreichen. Zeig ihnen, dass du eine aufregende Performance hinlegen kannst!",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "Ich sehe die Fortschritte, die du machst! Man beginnt, im Ausland über dich zu sprechen. Die Leute sind interessiert. Das ist ein Zeichen dafür, dass du das Richtige tust!",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "Auf zu großen Höhen! - Teil 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "Du machst das großartig! Aber es ist zu früh, um aufzuhören. Zeige dich öfter, beeindrucke das Publikum. Heb dich ab. Werde derjenige, über den sie reden, derjenige, den sie sehen wollen. Dann wird das Geld kommen, und dann kommen andere Dinge: Autos, Mädchen... Obwohl es bei Tarkov ein wenig an Letzterem mangelt.\n\nJedenfalls ist die Arena im Moment eine großartige Karrierechance, ha!",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "Und jetzt bist du einen Schritt näher an den ganz großen Ligen! Respekt, Bruder.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "Auf zu großen Höhen! - Teil 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "Wie ist die Stimmung? Bereit für die Schlacht? Bereit, noch einmal in der Arena zu glänzen? Bereit, ein paar Mistkerle zu zerfetzen? Die Chancen stehen immer noch schlecht für dich, also lass das Publikum nicht im Stich!\n\nWo wir gerade dabei sind. Hast du etwas Geld? Du musst auf dich selbst wetten und dann sechsmal gewinnen. Du wirst tonnenweise Geld machen und berühmt werden. Bring das Geld mit, ich werde alles organisieren. Aber sei gewarnt: Wenn du fünfmal verlierst, fängst du wieder von vorne an.",
"683421515619c8e2a9031511 failMessageText": "Oh Mann, du hast es fast geschafft. Versuch es noch einmal, das Publikum scheint dich immer noch zu mögen.",
"683421515619c8e2a9031511 successMessageText": "Hier ist dein Gehaltsscheck. Ich habe gleich alle meine Leistungen davon abgezogen: Bestechung von Gegnern, Honorare und so weiter. Dachtest du etwa, ich arbeite umsonst?",
"683421515619c8e2a9031514": "Übergebe Rubel aus deinem EFT-Versteck",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Die Aufgabe schlägt fehl, wenn du 5 Spiele verlierst",
"683421515619c8e2a903151b": "Die Aufgabe schlägt fehl, wenn du 5 Spiele verlierst",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "Auf zu großen Höhen! - Teil 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "Ich habe gute Nachrichten! Ausgezeichnete Nachrichten sogar! Ich hoffe, du hast dir schon eine kleine Wohnung in Tarkovs Nobelviertel ausgesucht, denn mit all dem Geld wirst du dir das schon bald leisten können! Kleiner Scherz. Alle Häuser in diesen Vierteln werden sowieso bald in sich zusammenfallen.\n\nWie auch immer, ein paar sehr mächtige Leute von jenseits der Grenze sind an dir interessiert. Mächtig und wohlhabend. Ich kann dir ihre Namen nicht nennen, das ist ein Geschäftsgeheimnis, und ich werde mich an mein Wort halten. Diese Leute sind bereit, dich unter ihre Fittiche zu nehmen und dich massiv zu unterstützen, aber zuerst wollen sie Garantien.\n\nDu musst der Champion werden. Fliege hoch, erhebe dich über den Rest. Du wirst mehr Zeit in der Arena verbringen müssen. Ich kann es in deinen Augen sehen, dass du bereit bist.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "Du bist wirklich sehr gut. Ein sehr berühmter französischer Mann ist an dir interessiert, Namen kann ich aber nicht nennen, Privatsphäre und so. Er lispelt stark, aber er bietet viel Geld. Ich habe mich bereits um dein Sponsoring gekümmert.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Entgegen jeglichen Gewissens - Teil 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Hallo. Ich habe gehört, du arbeitest jetzt für Ref. Ich beobachte dich schon seit einer Weile. \n\nIch kannte mal einen Mann, der genau wie du in die gleichen Dinge verwickelt war. Er war eine Zeit lang Refs früherer Champion und verschwand dann ganz plötzlich. Und ich weiß genau, dass das nichts mit Kaban und Kollontay zu tun hat. \n\nWenn du nicht auf die gleiche Weise verschwinden willst wie dieser Typ, dann schau dich nach der Wohnung des letzten Champions um. Ich glaube, dass dort etwas Interessantes hinterlassen worden ist. Der Champion hing immer mit den Schmugglern in den Wohnheimen des Zollgeländes herum. Vielleicht findest du ein paar Hinweise, wie du in die Wohnung kommst.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "Willst du Ref selbst fragen? Nun, es war schön, dich gekannt zu haben.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Finde heraus, was mit dem Champion passiert ist",
"6834233fecd5cf3a440d8564": "Überlebe und entkomme aus dem Bereich",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Entgegen jeglichen Gewissens - Teil 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "Du sagst also, dass du in der Wohnung des letzten Champions warst? Also gut. Ich werde so tun, als wäre das nie passiert. Aber denk dran: „Curiosity killed the cat“, wie man so schön sagt. Genau wie beim letzten Champion. Er war ein guter Kerl, ich mochte ihn, aber er wurde weich, verlor seinen Reiz.\n\nDu solltest mehr trainieren und nicht in der Stadt herumlaufen. Sonst sinkt dein Rang.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "Genau so! Man sollte seine Zeit damit verbringen, seine Fähigkeiten zu verbessern. Wer weiß, was passiert, wenn man das nicht tut?",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Entscheidungen, Entscheidungen [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "Ich habe Gerüchte gehört... Sehr unangenehme Gerüchte. Es heißt, du willst mir das Geschäft vermasseln.\n\nHör zu, wir kennen uns schon eine Weile. Du bist wie ein Bruder für mich! Tu nichts, was du später bereuen könntest. Je weniger du weißt, desto besser schläfst du, verstehst du?\n\nBis ich dir absolut vertraue, lasse ich dich von meinen Leuten beobachten. Ich will nicht, dass du irgendwelche Stunts abziehst, Champ. Und wenn du bei deinem Rendezvous mit dem alten Champion etwas findest, bring es zu mir. Dann können wir diesen glücklichen kleinen Unfall vergessen.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "Du hast dich richtig entschieden. Ich habe gar nicht an dich gezweifelt, Bruder. Keine fragwürdigen Geschäfte mehr, verstanden?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Übergebe die gefundenen Informationen",
"6834254f2f0e2a7eb90b62f4": "Die Aufgabe schlägt fehl, wenn du die Informationen zu Fence gibst",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Zwischen Zwei Feuern [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "Du hast also eine Leiche gesehen. Hast du sie untersucht? Hast du die Umgebung abgecheckt? Ich weise nur darauf hin, dass du blind bist. Der Champion hat, soweit ich weiß, ein Tagebuch geführt. Ja, wie ein Teenager, aber das ist eigentlich ein Vorteil für dich.\n\nWarum gehst du nicht noch mal hin und schaust dir das genauer an? In dem Tagebuch muss es mehr Informationen über Ref geben, etwas Unerfreuliches über ihn. Tu das, wenn du in der Arena nicht länger verzichtbar sein willst.\n\nUnd noch etwas: Wenn du mir Informationen über Ref bringst, die meine Zeit wert sind, werde ich dich gut bezahlen.",
"683425dd8f5b18d29a05d9d1 failMessageText": "Du willst unter dem Rock von Ref bleiben? Dann mach das.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Finde das Versteck des alten Champions",
"683425dd8f5b18d29a05d9d4": "Kehre zum Versteck des alten Champions zurück",
"683425dd8f5b18d29a05d9d6": "Finde kompromittierende Informationen über Ref",
"683425dd8f5b18d29a05d9d8": "Übergebe die gefundenen Informationen",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift [PVE ZONE]",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward [PVE ZONE]",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "Hand over the item: Lega Medal",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa 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": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Alles sicher sagst du? Dann gute Arbeit, Soldat.",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "Higher and Higher",
"6842c27a38482d35ac0bd847 description": "Earn the Prestige level 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Scav upper 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Abibas alsó",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "Sportswear",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Crye Precision AVS MBAV (Tagilla kiadás)",
"609e860ebd219504d8507525 ShortName": "AVS TE",
"609e860ebd219504d8507525 Description": "Tagilla's well-worn plate carrier based on the AVS module system by Crye Precision. It has one front panel with three attached pouches. And that's pretty much it. Nothing more, nothing less.",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "SIG Sauer ROMEO8T reflex sight",
"60a23797a37c940de7062d02 ShortName": "ROMEO8T",
"60a23797a37c940de7062d02 Description": "The ROMEO8T reflex sight, designed for precision shooting for modern sporting rifles and shotguns. Manufactured by SIG Sauer.",
@@ -15116,6 +15122,9 @@
"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.",
"68406efe068a2d99940c1ce3 Name": "SSD-meghajtó",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "A solid state drive. Used to store data with enhanced read and write performance.",
"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.",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "Grenadier t-shirt",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Merch t-shirt",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "Road to Military Base V-Ex",
" Voip/DisabledForOffline": "VOIP is unavailable in the offline mode",
" kg": "Kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "Resolution has changed. Do you want to keep the current resolution?",
"Resource": "ERŐFORRÁS",
"RestSpace": "PIHENŐ",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "Visszatérési arány:",
"Revert": "VISSZAVONÁS",
"Revert your settings to default?": "Are you sure you want to revert your settings to their default values?",
@@ -18970,6 +19015,21 @@
"TeamTab": "Teams",
"Teamkills": "Teamkills",
"Terrain quality:": "Terep minősége:",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "Texture quality settings will be applied after game restart.",
"Texture quality:": "Textúra minőség:",
"That item cannot be insured": "A tárgy nem biztosítható",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "Will do. <color=grey><i>(accept task \"{0}\")</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "Done. <color=grey><i>(finish task \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "Found this. <color=grey><i>(hand over \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "<color=grey><i>(hand over item \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "Here's where I can drop you off. Pick one.",
"Trading/Dialog/PlayerTaxi/Name": "Take a ride",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "YELLOW TEAM",
"starvDeaths": "Halálra éhezések",
"stationHeals": "Gyógykezelések",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "Smugglers' Basement",
"suicides": "Öngyilkosságok",
"survClass": "Túlélő osztály",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "Easy Money - Part 1",
"66058cb22cee99303f1ba067 name": "Easy Money - Part 1 [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "Sup mate. Got a job for ya. An old pal of mine is looking for the right people for his business. I don't know the ins and outs, just the first stage of recruitment, so to speak. I see you're interested.\n\nYou heard anything about the Arena yet? You gotta put up flyers around Tarkov. Like \"come and check it out\", shit like that, you know. Hey, serious people always start small! I've got a couple of posters ready for ya, but if you lose them, it's your own bloody problem, got it? Bring them to the Scav stronghold at the customs terminal. Off you go then.",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "All done? I'll pass it on then. Here are some goodies in the meantime.",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "Easy Money - Part 2",
"66058cb5ae4719735349b9e8 name": "Easy Money - Part 2 [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "Hello, champion! A friend of mine gave you a little tryout assignment. Now I've decided to meet you in person. People call me Ref. Hosting the Arena and the big bucks, ha!\n\nClearly you don't mind making money, and I'm in desperate need of new staff. Business is booming, and I'm short-handed. We're expanding!\n\nWe got another fight planned soon. As they used to say in ancient Rome, \"the people demand bread and circuses.\" The latter is fine, but the bread is running late. A little supply disruption, don't worry about it. Just get me some food and booze for the audience.",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "Everything you brought has already been sent to the seats. Well done.",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "Balancing - Part 1",
"66058cb7c7f3584787181476 name": "Balancing - Part 1 [PVP ZONE]",
"66058cb7c7f3584787181476 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "Balancing - Part 2",
"66058cb9e8e4f17985230805 name": "Balancing - Part 2 [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "Surprise",
"66058cbb06ef1d50a60c1f46 name": "Surprise [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "I came up with a great idea to make the Arena even better. And I need your help.\n\nI need to find some armor plates for a guy. He's a frequent performer, so it's time to give him an upgrade to get the crowd excited. That's the thing about shows, you don't add wood in time, the fire goes out.\n\nWell, now go get me some armor plates. \n\nThe crowd's gonna squeal when they see him!",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "Just what I needed! Not much more to go. Everyone will be thrilled when they see the results, I promise! Here's a helmet as a reward. His last owner has a better one now, ha!",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "Create a Distraction - Part 1",
"66058cbd9f59e625462acc8e name": "Create a Distraction - Part 1 [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "Ha, you should have seen the chaos when they found the bricks! What a show! It's a damn shame we didn't film the whole thing... You did a good job. Here's your reward.",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "Create a Distraction - Part 2",
"66058cbf2f19c31a5a1337ec name": "Create a Distraction - Part 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"66058cbf2f19c31a5a1337ec failMessageText": "Can't you see who you're shooting at?! I had such high hopes for you.",
"66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "To Great Heights! - Part 1",
"66058cc1da30b620a34e6e86 name": "To Great Heights! - Part 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "I never doubted you for a second, brother! But remember, we're here to entertain people. We need a bigger show! Sometimes it looks like you're just shooting cans, you know.",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "To Great Heights! - Part 2",
"66058cc208308761cf390993 name": "To Great Heights! - Part 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "You're under my wing from now on, brother. I'll make sure you get progress good, but you're gonna have to get your ass in gear more often.\n\nLet's start with the basics. The Arena's in Tarkov, but the biggest sponsors are overseas. They watch every game, place bets, throw money at the favorites. And you need to get some of those big shots interested. Get their attention, show them you're worthy. Make a name for yourself. One win alone isn't enough to do it. Show them you can make a thrilling performance!",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "I see the progress you're making! They're starting to talk about you overseas. People are interested. It's a sign that you're doing the right thing!",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "To Great Heights! - Part 3",
"66058cc5bb83da7ba474aba9 name": "To Great Heights! - Part 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "You're doing great! But it's too early to stop. Shine your face more often, impress the audience. Stand out. Become the one they talk about, the one they come to see. Then the cash will come, and then other goodies: cars, girls... Although Tarkov is a little short on the latter.\n\nAnyway, the Arena is a great career opportunity right now, ha!",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "And now you're one step closer to the big leagues! Respect, brother.",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "To Great Heights! - Part 4",
"66058cc72cee99303f1ba069 name": "To Great Heights! - Part 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "How's the mood? Battle-ready? Ready to shine in the Arena once more? Ready to shred some motherfuckers? The odds are still stacked against you, so don't let the audience down!\n\nSpeaking of that. You got some money? You gotta bet on yourself and then win six times. You'll make tons of cash, and you'll be famous. Bring the money, I'll organize everything. Just be warned: if you lose five times, you start again.",
"66058cc72cee99303f1ba069 failMessageText": "Oh man, you almost did it. Try again, the audience still seems to favor you.",
"66058cc72cee99303f1ba069 successMessageText": "Here's your paycheck. I deducted all my services from it straight away: bribing opponents, fees, and all that. What, you thought I work for free?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "To Great Heights! - Part 5",
"66058cc9ae4719735349b9ea name": "To Great Heights! - Part 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "I have good news! Excellent news, in fact! I hope you've already picked out a little apartment in Tarkov's elite neighborhood, because you'll have it soon with all this money! Kidding. All the houses in those neighborhoods are soon gonna collapse anyway.\n\nAnyway, some very powerful people from across the border are interested in you. Powerful and wealthy. I can't tell you their names, it's a business secret, and I'm not violating what I signed. So, these people are ready to take you under their wing and sponsor you heavily, but first they want guarantees.\n\nYou need to become the champion. Fly high, soar above the rest. You're gonna have to spend more time in the Arena. I can see it in your eyes that you're ready.",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "You're really good. A very famous French man — I won't tell you his name for privacy — is interested in you. Lispy as hell, but he's offering good money. I've already arranged for your sponsorship.",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "Against the Conscience - Part 1",
"66058ccbc7f3584787181478 name": "Against the Conscience - Part 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "Hello. I hear you're working for Ref now. I've been keeping tabs on you for a while. \n\nI used to know a man who got tangled up just like you. He was Ref's previous champion for a while and then all of a sudden he disappeared. And I know for sure this had nothing to do with Kaban and Kollontay. \n\nIf you don't want to vanish the same way this guy did, look for the last champion's apartment. I believe there's something of interest left there. The champion used to hang out with the smugglers in Dorms on Customs. Maybe you'll find some clues on how to get into the apartment.",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "You want to ask Ref yourself? Well, it was nice knowing you.",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "Against the Conscience - Part 2",
"66058ccde8e4f17985230807 name": "Against the Conscience - Part 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "So you're saying you were in the last champion's apartment? All right then. I'll pretend like it never happened. Just remember, curiosity killed the cat. And the last champion, too. He was a good guy, I liked him, but he got soft, lost his touch.\n\nYou should be practicing more, not wandering around the city. Otherwise, your ranking will start to drop.",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "There you go! Time should be spent improving your skills. Who knows what happens if you don't?",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "Between Two Fires",
"66058ccf06ef1d50a60c1f48 name": "Between Two Fires [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.",
"66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.",
"66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "Decisions, Decisions",
"66058cd19f59e625462acc90 name": "Decisions, Decisions [PVP ZONE]",
"66058cd19f59e625462acc90 description": "I've been hearing rumors... Very unpleasant rumors. They say you're trying to dig my business up.\n\nLook, we've known each other for a while. You're like a brother to me! Don't do something you'll regret later. The less you know, the better you sleep, you hear that?\n\nUntil I'm absolutely confident in you, I'm gonna have my men watching you. I don't want you pulling any stunts, champ. And if you find anything during your little date with the old champion, bring it to me. Then we can forget about this happy little accident.",
"66058cd19f59e625462acc90 failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"66058cd19f59e625462acc90 successMessageText": "You made the right choice. Never doubted you, brother. All right, no more funny business from now on, you hear me?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.",
"6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.",
"6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.",
"6744a728352b4da8e003eda9 completePlayerMessage": "Here's your stuff. This is the last time I'm doing tank battery delivery. Surely.",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.",
"6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "Here's your stuff. This is the last time I'm doing tank battery delivery. Surely.",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "Are you sure this is it? Okay, I can smell it, that's definitely the one! \n\nRagman told me about the health resort's cellars yesterday, I even had to fucking get him wasted so we could finally change the subject. Anyway, there was a Soviet bomb shelter under the health resort, and Ref was going to organize a new arena there, for VIP audiences. I think it also involved Tagilla somehow... No, it was something else...\n\nAnyway, for this arena, Ref organized a big gear acquisition from Ragman, everything was almost ready. And then our host guy suddenly backed out. Why? Who the fuck knows.\n\nRagman was really upset that the idea had fallen through. But he'd already delivered some of the gear, and he definitely used those keycards you're looking for. You better ask him yourself, I don't remember much from yesterday. Thanks for the drink, by the way.",
"67a0da26a3b8d254347b8634": "Hand over a Bottle of Fierce Hatchling moonshine",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "You didn't make it to the \"test sample\" yesterday. Here, Ragman asked me to give it to you so that you could test it yourself.",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "By the way, I wanted to ask you: have you heard anything about the facility under the health resort and the keycards to access it?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "Surprise Gift",
"67e993b1ac26bf29380a320b name": "Surprise Gift [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"67e993b1ac26bf29380a320b failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"67e993b1ac26bf29380a320b successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "You'll get your info.",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "Here's all I could find on Ref.",
"67e993f5ed537409f009da75 name": "Postponed Reward",
"67e993f5ed537409f009da75 name": "Postponed Reward [PVP ZONE]",
"67e993f5ed537409f009da75 description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Easy Money - Part 1 [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Sup mate. Got a job for ya. An old pal of mine is looking for the right people for his business. I don't know the ins and outs, just the first stage of recruitment, so to speak. I see you're interested.\n\nYou heard anything about the Arena yet? You gotta put up flyers around Tarkov. Like \"come and check it out\", shit like that, you know. Hey, serious people always start small! I've got a couple of posters ready for ya, but if you lose them, it's your own bloody problem, got it? Bring them to the Scav stronghold at the customs terminal. Off you go then.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "All done? I'll pass it on then. Here are some goodies in the meantime.",
"6834145ebc1f443d7603c8ab": "Plant the Bison vs Undertaker poster in the living quarters at the Scav base on Customs",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Easy Money - Part 2 [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "Hello, champion! A friend of mine gave you a little tryout assignment. Now I've decided to meet you in person. People call me Ref. Hosting the Arena and the big bucks, ha!\n\nClearly you don't mind making money, and I'm in desperate need of new staff. Business is booming, and I'm short-handed. We're expanding!\n\nWe got another fight planned soon. As they used to say in ancient Rome, \"the people demand bread and circuses.\" The latter is fine, but the bread is running late. A little supply disruption, don't worry about it. Just get me some food and booze for the audience.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Everything you brought has already been sent to the seats. Well done.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Hand over the found in raid items from the Food category",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "Balancing - Part 1 [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "Balancing - Part 2 [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Surprise [PVE ZONE]",
"68341b407559f4e6d50bc0ce description": "I came up with a great idea to make the Arena even better. And I need your help.\n\nI need to find some armor plates for a guy. He's a frequent performer, so it's time to give him an upgrade to get the crowd excited. That's the thing about shows, you don't add wood in time, the fire goes out.\n\nWell, now go get me some armor plates. \n\nThe crowd's gonna squeal when they see him!",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "Just what I needed! Not much more to go. Everyone will be thrilled when they see the results, I promise! Here's a helmet as a reward. His last owner has a better one now, ha!",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Create a Distraction - Part 1 [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "Ha, you should have seen the chaos when they found the bricks! What a show! It's a damn shame we didn't film the whole thing... You did a good job. Here's your reward.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Create a Distraction - Part 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "Can't you see who you're shooting at?! I had such high hopes for you.",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "To Great Heights! - Part 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "I never doubted you for a second, brother! But remember, we're here to entertain people. We need a bigger show! Sometimes it looks like you're just shooting cans, you know.",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "To Great Heights! - Part 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "You're under my wing from now on, brother. I'll make sure you get progress good, but you're gonna have to get your ass in gear more often.\n\nLet's start with the basics. The Arena's in Tarkov, but the biggest sponsors are overseas. They watch every game, place bets, throw money at the favorites. And you need to get some of those big shots interested. Get their attention, show them you're worthy. Make a name for yourself. One win alone isn't enough to do it. Show them you can make a thrilling performance!",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "I see the progress you're making! They're starting to talk about you overseas. People are interested. It's a sign that you're doing the right thing!",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "To Great Heights! - Part 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "You're doing great! But it's too early to stop. Shine your face more often, impress the audience. Stand out. Become the one they talk about, the one they come to see. Then the cash will come, and then other goodies: cars, girls... Although Tarkov is a little short on the latter.\n\nAnyway, the Arena is a great career opportunity right now, ha!",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "And now you're one step closer to the big leagues! Respect, brother.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "To Great Heights! - Part 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "How's the mood? Battle-ready? Ready to shine in the Arena once more? Ready to shred some motherfuckers? The odds are still stacked against you, so don't let the audience down!\n\nSpeaking of that. You got some money? You gotta bet on yourself and then win six times. You'll make tons of cash, and you'll be famous. Bring the money, I'll organize everything. Just be warned: if you lose five times, you start again.",
"683421515619c8e2a9031511 failMessageText": "Oh man, you almost did it. Try again, the audience still seems to favor you.",
"683421515619c8e2a9031511 successMessageText": "Here's your paycheck. I deducted all my services from it straight away: bribing opponents, fees, and all that. What, you thought I work for free?",
"683421515619c8e2a9031514": "Hand over Roubles from the EFT balance",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Failure Condition: Lose 4 matches",
"683421515619c8e2a903151b": "Failure condition: Lose 5 matches",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "To Great Heights! - Part 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "I have good news! Excellent news, in fact! I hope you've already picked out a little apartment in Tarkov's elite neighborhood, because you'll have it soon with all this money! Kidding. All the houses in those neighborhoods are soon gonna collapse anyway.\n\nAnyway, some very powerful people from across the border are interested in you. Powerful and wealthy. I can't tell you their names, it's a business secret, and I'm not violating what I signed. So, these people are ready to take you under their wing and sponsor you heavily, but first they want guarantees.\n\nYou need to become the champion. Fly high, soar above the rest. You're gonna have to spend more time in the Arena. I can see it in your eyes that you're ready.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "You're really good. A very famous French man — I won't tell you his name for privacy — is interested in you. Lispy as hell, but he's offering good money. I've already arranged for your sponsorship.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Against the Conscience - Part 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Hello. I hear you're working for Ref now. I've been keeping tabs on you for a while. \n\nI used to know a man who got tangled up just like you. He was Ref's previous champion for a while and then all of a sudden he disappeared. And I know for sure this had nothing to do with Kaban and Kollontay. \n\nIf you don't want to vanish the same way this guy did, look for the last champion's apartment. I believe there's something of interest left there. The champion used to hang out with the smugglers in Dorms on Customs. Maybe you'll find some clues on how to get into the apartment.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "You want to ask Ref yourself? Well, it was nice knowing you.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Find out what happened to the champion",
"6834233fecd5cf3a440d8564": "Survive and extract from the location",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Against the Conscience - Part 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "So you're saying you were in the last champion's apartment? All right then. I'll pretend like it never happened. Just remember, curiosity killed the cat. And the last champion, too. He was a good guy, I liked him, but he got soft, lost his touch.\n\nYou should be practicing more, not wandering around the city. Otherwise, your ranking will start to drop.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "There you go! Time should be spent improving your skills. Who knows what happens if you don't?",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Decisions, Decisions [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "I've been hearing rumors... Very unpleasant rumors. They say you're trying to dig my business up.\n\nLook, we've known each other for a while. You're like a brother to me! Don't do something you'll regret later. The less you know, the better you sleep, you hear that?\n\nUntil I'm absolutely confident in you, I'm gonna have my men watching you. I don't want you pulling any stunts, champ. And if you find anything during your little date with the old champion, bring it to me. Then we can forget about this happy little accident.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "You made the right choice. Never doubted you, brother. All right, no more funny business from now on, you hear me?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Hand over the found info",
"6834254f2f0e2a7eb90b62f4": "You must not complete the task Between Two Fires",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Between Two Fires [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.",
"683425dd8f5b18d29a05d9d1 failMessageText": "You want to stay under Ref's skirt? You do you then.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Locate the old champion's hideout",
"683425dd8f5b18d29a05d9d4": "Return to the old champion's hideout on Customs",
"683425dd8f5b18d29a05d9d6": "Locate and obtain the compromising information on Ref",
"683425dd8f5b18d29a05d9d8": "Hand over the found info",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift [PVE ZONE]",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward [PVE ZONE]",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "Hand over the item: Lega Medal",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa 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": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "Higher and Higher",
"6842c27a38482d35ac0bd847 description": "Earn the Prestige level 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Parte superiore Scav 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Pantaloni tuta Adik",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "Abbigliamento Sportivo",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Porta piastre Crye Precision AVS (Edizione Tagilla)",
"609e860ebd219504d8507525 ShortName": "AVS TE",
"609e860ebd219504d8507525 Description": "Porta piastre logoro di Tagilla basato sul sistema di moduli AVS della Crye Precision. Dotato di un pannello frontale con tre tasche attaccate. E questo è praticamente tutto. Niente di più, niente di meno.",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "Mirino reflex SIG Sauer ROMEO8T",
"60a23797a37c940de7062d02 ShortName": "ROMEO8T",
"60a23797a37c940de7062d02 Description": "Il mirino reflex ROMEO8T, progettato per il tiro di precisione per le moderne carabine e fucili sportivi. Prodotto dalla SIG Sauer.",
@@ -15116,6 +15122,9 @@
"683ed6ccd9a096739b0c9228 Name": "Paramano AK-50 con blocco gas",
"683ed6ccd9a096739b0c9228 ShortName": "АК-50",
"683ed6ccd9a096739b0c9228 Description": "Un paramano M-LOK con blocco di gas con guida per il fucile da cecchino AK-50.",
"68406efe068a2d99940c1ce3 Name": "Disco SSD",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "Unità a stato solido. Utilizzato per memorizzare i dati, con migliori prestazioni di lettura e scrittura.",
"68418091b5b0c9e4c60f0e7a Name": "Piastrina USEC",
"68418091b5b0c9e4c60f0e7a ShortName": "USEC",
"68418091b5b0c9e4c60f0e7a Description": "Una speciale piastrina dell'esercito in acciaio inossidabile che serve a identificare rapidamente i feriti e i deceduti in combattimento. Ha un'insolita tonalità dorata.",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "Maglietta Granatiere",
"685ebb9dd8500c455802e9c8 ShortName": "Granatiere",
"685ebb9dd8500c455802e9c8 Description": "Maglietta Merch",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "Strada per la Base Militare V-Ex",
" Voip/DisabledForOffline": "Il VoIP non è disponibile in modalità offline",
" kg": " Kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "La risoluzione è cambiata. Vuoi mantenere le impostazioni correnti?",
"Resource": "RISORSA",
"RestSpace": "SPAZIO PER IL RIPOSO",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "Velocità di ritorno:",
"Revert": "RIPRISTINA",
"Revert your settings to default?": "Sei sicuro di voler ripristinare le tue impostazione al loro stato inziale?",
@@ -18970,6 +19015,21 @@
"TeamTab": "Squadre",
"Teamkills": "Uccisioni di squadra",
"Terrain quality:": "Qualità terreno:",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "Le impostazioni qualità delle Texture verranno applicate dopo il riavvio del gioco.",
"Texture quality:": "Qualità texture:",
"That item cannot be insured": "L'oggetto non può essere assicurato",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "Lo farò. <color=grey><i>(accetta missione \"{0}\")</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "Fatto. <color=grey><i>(finisci missione \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "Trova questo. <color=grey><i>(consegna \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "Ecco. <color=grey><i>(consegna oggetto \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "Ecco dove posso lasciarti. Scegli un posto.",
"Trading/Dialog/PlayerTaxi/Name": "Prendi il passaggio",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "D'accordo, destinazione Cinema Rodina. Il prezzo ti va bene?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "SQUADRA GIALLA",
"starvDeaths": "Morti per fame",
"stationHeals": "Trattamenti vitali",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "Seminterrato dei Contrabbandieri",
"suicides": "Suicidi",
"survClass": "Classe sopravvissuto",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "Soldi Facili - 1° Parte",
"66058cb22cee99303f1ba067 name": "Soldi Facili - 1° Parte [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "Com'è? Ascolta, ho un lavoro per te. Un mio caro vecchio amico sta cercando delle persone giuste per i suoi affari. Non conosco i dettagli, ma solo informazioni sulla prima fase del reclutamento, per così dire. Vedo che la cosa ti può interessare.\n\nHai mai sentito parlare dell'Arena? Dovresti attaccare in qua e in la per Tarkov alcuni volantini. Tipo \"vieni a dare un'occhiata\", cose di questo genere. Non mi guardare così, sai anche tu che le persone serie iniziano sempre dal basso! Ho un paio di manifesti pronti per te, ma se li perdi è un tuo dannato problema, capito? Portali alla roccaforte Scav al terminal doganale. Adesso puoi andarre.",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "Tutto finito? Allora poi passerò. Nel frattempo ecco alcune chicche.",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "Soldi Facili - 2° Parte",
"66058cb5ae4719735349b9e8 name": "Soldi Facili - 2° Parte [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "Ciao, campione! Un mio amico ti ha dato un piccolo incarico di prova. Ora ho deciso di incontrarti di persona. La gente mi chiama Ref. Ospito l'Arena e i suoi grandi guadagni, ah!\n\nÈ chiaro che non ti dispiace fare soldi, e io ho un disperato bisogno di nuovo personale. Gli affari vanno a gonfie vele e io sono a corto di personale. Ci stiamo espandendo!\n\nAbbiamo in programma un altro incontro a breve. Come si diceva nell'antica Roma, \"il popolo chiede pane e circo\". Quest'ultimo va bene, ma il pane è in ritardo. Una piccola interruzione dei rifornimenti, non preoccuparti. Procurami solo cibo e alcolici per il pubblico.",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "Tutto ciò che hai portato è già stato inviato ai posti. Ben fatto.",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "Bilanciamento - 1° Parte",
"66058cb7c7f3584787181476 name": "Bilanciamento - 1° Parte [PVP ZONE]",
"66058cb7c7f3584787181476 description": "Hai fatto un ottimo lavoro con tutte le richieste che ti ho assegnato. Ti ho anche fatto controllare nei miei database... Solo per precauzione. Non si assume persone qualsiasi, capisci cosa intendo, fratello? Ti promuovo come tester! Dovrai testare le attrezzature per l'Arena.\n\nHo appena ricevuto un ottimo lotto di bullpup ad un prezzo eccezionale. Provali su qualche vagabondo. Dopo i tuoi feedback deciderò se questi fucili andranno ai miei \"spazzini\" o ai gladiatori.",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "Non è una brutta pistola, eh? A dire il vero, ho un debole per i bullpup. L'AUG è ovviamente difficile da mantenere, ha uno strano meccanismo di scatto, difficile da abituarsi, e in più è facile dimenticare il lato della porta di espulsione. Di certo non è un'arma per dilettanti. Ma ha un'ottima sensazione! Preferisco non darlo agli addetti alle pulizie. \n\nComunque, ecco la vostra ricompensa.",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "Bilanciamento - 2° Parte",
"66058cb9e8e4f17985230805 name": "Bilanciamento - 2° Parte [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "Bene, ora è il momento di testare alcuni giubbotti antiproiettile. Questa è solo per la squadra di pulizia. Vediamo come si comporta contro i veri mercenari. Prova a uccidere qualche PMC indossando questa armatura PACA. Dopodiché, vedrò cos'altro posso inventarmi.",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "Vivo? Bene! Che c'è, l'armatura fa schifo e non tiene contro nulla? Beh, merda, è un peccato. Sarà troppo debole per la squadra di pulizia, quindi dovrò trovare un modello migliore.\n\nEcco la tua ricompensa. Per ora finiamo con questa cosa del bilanciamento.",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "Sorpresa",
"66058cbb06ef1d50a60c1f46 name": "Sorpresa [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "Ho avuto una grande idea per rendere l'Arena ancora migliore. E ho bisogno del tuo aiuto.\n\nDevo trovare delle piastre di armatura per un ragazzo. È un artista che si esibisce spesso, quindi è ora di dargli un aggiornamento per far emozionare il pubblico. Questo è il problema degli spettacoli: se non si aggiunge legna in tempo, il fuoco si spegne.\n\nBene, ora vai a prendermi delle piastre per l'armatura.\n\nLa folla strillerà quando lo vedrà!",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "Proprio quello di cui avevo bisogno! Non manca molto. Tutti saranno entusiasti quando vedranno i risultati, lo prometto! Ecco un casco come ricompensa. Il suo ultimo proprietario ne ha uno migliore, ah!",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "Crea un Diversivo - 1° Parte",
"66058cbd9f59e625462acc8e name": "Crea un Diversivo - 1° Parte [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "Senti, stai iniziando a sentirti come uno di famiglia per me. Come un fratello! Penso di poterti trovare un lavoro serio.\n\nHo dei co-fondatori nell'Arena, Kaban e Kollontay, forse li conosci. Credevo fossero dei tipi in gamba, ma ora hanno deciso di fare politica. Vogliono mettere il loro campione nell'Arena, te lo immagini? E un buon campione porta tanti soldi, si sa. Ci vorrà molto tempo e denaro per ricostruire l'attività.\n\nDobbiamo spaventare questi ragazzi in modo che capiscano che stanno oltrepassando il limite. Prendete dei mattoni esplosivi e piantateli all'interno del caffè nel centro della città. Senza detonatori. Non faremo saltare in aria nulla, ma faremo in modo che sembri una cosa grossa. Lasciamoli andare in giro con il culo in fiamme.",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "Avresti dovuto vedere il caos quando hanno trovato i mattoni! Che spettacolo! È un vero peccato non aver filmato tutto... Hai fatto un buon lavoro. Ecco la tua ricompensa.",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "Creare una distrazione - Parte 2",
"66058cbf2f19c31a5a1337ec name": "Creare una distrazione - Parte 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Kaban e Kollontay si sono cagati addosso, ma per me non era abbastanza. Vorrei finirli. Non siete obbligati ad aiutarmi, ovviamente, ma...\n\nHo già un piano. Devi andare a casa loro e sparare alle loro guardie del corpo o come si chiamano. Tutti i presenti sono persone fidate per quei due, quindi sono i bersagli perfetti. Ma assicuratevi che Kaban e Kollontay siano incolumi!",
"66058cbf2f19c31a5a1337ec failMessageText": "Non vedevi a chi stavi sparando?! Avevo grandi speranze per te.",
"66058cbf2f19c31a5a1337ec successMessageText": "Buon lavoro! Kaban e Kollontay stanno già scatenando una tempesta. Penso che presto verranno da me per cercare di lasciare questo business.\n\nEcco la tua meritata ricompensa.",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "A Grandi Altezze! - Parte 1",
"66058cc1da30b620a34e6e86 name": "A Grandi Altezze! - Parte 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "Bene, bene, hai terminato la tua prima valutazione. Credo sia giunto il momento di far sorgere un nuovo campione dell'Arena. E sarai tu. Con il consenso, ovviamente. Qui non pratichiamo la crudeltà, haha!\n\nPosso aiutarti a raggiungere vette e ricchezze che vanno oltre i tuoi sogni più sfrenati. Dovrai solo accettare la mia offerta. Ma, si sa, i fatti hanno sempre la meglio sulle parole. Quindi vai avanti, entra nell'Arena e vinci. Così saprò che siete pronti ad andare avanti.",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "Non ho mai dubitato di te nemmeno per un secondo, fratello! Ma ricorda, siamo qui per intrattenere la gente. Abbiamo bisogno di uno spettacolo più grande! A volte sembra che stai sparando a delle lattine, sai?",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "A Grandi Altezze! - Parte 2",
"66058cc208308761cf390993 name": "A Grandi Altezze! - Parte 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "D'ora in poi sei sotto la mia ala, fratello. Farò in modo che tu possa progredire bene, ma dovrai mettere in moto il tuo culo più spesso.\n\nCominciamo con le basi. L'Arena è a Tarkov, ma i maggiori sponsor sono all'estero. Guardano tutte le partite, fanno scommesse, buttano soldi sui favoriti. E te dovrai far interessare alcuni di questi pezzi grossi. Attirare la loro attenzione, dimostrare che sei all'altezza. Fatti un nome. Una vittoria da sola non basta. Dimostra loro che sei in grado di fare una performance entusiasmante!",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "Vedo i progressi che stai facendo! All'estero iniziano a parlare di te. La gente è interessata. È un segno che stai facendo la cosa giusta!",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "A Grandi Altezze! - Parte 3",
"66058cc5bb83da7ba474aba9 name": "A Grandi Altezze! - Parte 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "Stai andando alla grande! Ma è troppo presto per fermarsi. Fai brillare il tuo volto più spesso, impressiona il pubblico. Distinguiti. Diventa quello di cui parlano, quello che vengono a vedere. Poi arriveranno i soldi, e poi altre chicche: macchine, ragazze... Anche se Tarkov è un po' a corto di queste ultime.\n\nComunque, l'Arena è una grande opportunità di carriera in questo momento, ah!",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "E ora sei un passo più vicino alla serie A! Rispetto, fratello.",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "A Grandi Altezze! - Parte 4",
"66058cc72cee99303f1ba069 name": "A Grandi Altezze! - Parte 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "Com'è l'umore? Pronto per la battaglia? Pronto a brillare ancora una volta nell'Arena? Pronto a fare a pezzi qualche figlio di puttana? Le probabilità sono ancora contro di te, quindi non deludere il pubblico!\n\nA proposito di questo. Hai dei soldi? Scommetti su te stesso e vinci sei volte. Farai un sacco di soldi e diventerai famoso. Porta i soldi, io organizzerò tutto. Ma ti avverto: se perdi cinque volte, ricominci da capo.",
"66058cc72cee99303f1ba069 failMessageText": "Oh amico, ce l'hai quasi fatta. Riprova, il pubblico sembra ancora favorirti.",
"66058cc72cee99303f1ba069 successMessageText": "Ecco la tua busta paga. Ho detratto subito tutti i miei servizi: corruzione degli avversari, onorari e tutto il resto. Pensavi che lavorassi gratis?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "A Grandi Altezze! - Parte 5",
"66058cc9ae4719735349b9ea name": "A Grandi Altezze! - Parte 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "Ho buone notizie! Anzi, ottime notizie! Spero che tu abbia già scelto un piccolo appartamento nel quartiere d'élite di Tarkov, perché con tutti questi soldi lo avrete presto! Scherzo. Tutte le case di quei quartieri presto crolleranno comunque.\n\nComunque, alcune persone molto potenti dall'altra parte del confine sono interessate a te. Potenti e ricchi. Non posso dirti i loro nomi, è un segreto d'affari e non voglio violare quello che ho firmato. Quindi, queste persone sono pronte a prenderti sotto la loro ala e a sponsorizzarti pesantemente, ma prima vogliono delle garanzie.\n\nDovete diventare il campione. Volare in alto, volare al di sopra degli altri. Dovrai passare più tempo nell'Arena. Posso vedere nei tuoi occhi che sei pronto.",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "Sei davvero bravo. Un uomo francese molto famoso - non vi dirò il suo nome per privacy - è interessato a te. È un po' viscido, ma offre un bel po' di soldi. Ho già organizzato la tua sponsorizzazione.",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "Contro coscienza - Parte 1",
"66058ccbc7f3584787181478 name": "Contro coscienza - Parte 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "Salve. Ho sentito che ora lavori per Ref. Ti tengo d'occhio da un po'.\n\nConoscevo un uomo che è rimasto invischiato proprio come te. È stato il precedente campione di Ref per un po' e poi all'improvviso è scomparso. E so per certo che non ha nulla a che fare con Kaban e Kollontay.\n\nSe non vuoi scomparire come questo ragazzo, cerca l'appartamento dell'ultimo campione. Credo che lì sia rimasto qualcosa di interessante. Il campione era solito frequentare i contrabbandieri del Dormitorio a Customs. Forse troverete qualche indizio su come entrare nell'appartamento.",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "Vuoi chiedere te stesso a Ref? Beh, è stato un piacere conoscerti.",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "Contro coscienza - Parte 2",
"66058ccde8e4f17985230807 name": "Contro coscienza - Parte 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "Quindi sta dicendo che era nell'appartamento dell'ultimo campione? Va bene, allora. Farò finta che non sia mai successo. Ricorda solo che la curiosità ha ucciso il gatto. E anche l'ultimo campione. Era un bravo ragazzo, mi piaceva, ma si è rammollito, ha perso il suo tocco.\n\nDovresti allenarti di più, non andare in giro per la città. Altrimenti, la tua classifica inizierà a scendere.",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "Ecco fatto! Il tempo va speso per migliorare le proprie capacità. Chi sa cosa succede se non lo si fa?",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "Tra Due Fuochi",
"66058ccf06ef1d50a60c1f48 name": "Tra Due Fuochi [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "Quindi hai visto un cadavere. L'hai perquisito? Hai controllato intorno? Ti sto solo facendo notare che sei cieco. Il campione, per quanto ne so, teneva un diario. Sì, come un adolescente, ma questo gioca a tuo favore.\n\nPerché non vai di nuovo lì e dai un'occhiata più da vicino? Nel diario ci devono essere altre informazioni su Ref, del marcio su di lui. Fallo se vuoi smettere di essere un agnello sacrificabile nell'Arena.\n\nE un'altra cosa: se mi porterai qualche informazione su Ref che sia degna del mio tempo, ti pagherò bene.",
"66058ccf06ef1d50a60c1f48 failMessageText": "Vuoi stare sotto la gonna di Ref? Allora arrangiati.",
"66058ccf06ef1d50a60c1f48 successMessageText": "Ben fatto. Sono contento che tu abbia preso il tuo destino per le palle.\n\nAssicurati di non parlarne con Ref.",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "Decisioni, Decisioni",
"66058cd19f59e625462acc90 name": "Decisioni, Decisioni [PVP ZONE]",
"66058cd19f59e625462acc90 description": "Ho sentito delle voci... Voci molto sgradevoli. Dicono che tu stia cercando di dissotterrare i miei affari.\n\nSenti, ci conosciamo da un po'. Sei come un fratello per me! Non fare qualcosa di cui poi ti pentirai. Meno sai, meglio dormirai, hai capito?\n\nFinché non avrò piena fiducia in te, i miei uomini ti terranno d'occhio. Non voglio che tu faccia nessuna bravata, campione. E se troverai qualcosa durante il tuo appuntamento con il vecchio campione, portamelo. Così potremo dimenticare questo piccolo e felice incidente.",
"66058cd19f59e625462acc90 failMessageText": "Ti hanno puntato una pistola alla testa e ti hanno preso tutto, eh? Non prendermi per un idiota! Dov'è il fottuto diario adesso? Porca puttana. Comunque sia, me ne occuperò più tardi.",
"66058cd19f59e625462acc90 successMessageText": "Hai fatto la scelta giusta. Non ho mai dubitato di te, fratello. D'ora in poi niente più scherzi, capito?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "È una cosa davvero grossa! Spero che non sia stato troppo faticoso. Vai, lasaciala pure qui. Stai facendo un ottimo lavoro per me e non lo dimenticherò. Grazie.",
"6744a964dc1b1e2ee134ffeb": "Consegna l'oggetto: batteria militare 6-Sten-140-M",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "Rompermi la schiena per te... Ok, cercherò una soluzione.",
"6744a728352b4da8e003eda9 declinePlayerMessage": "Già, non proprio. Una volta ho dovuto strisciare non poco con una batteria di quel tipo. E penso che non lo farò mai più.",
"6744a728352b4da8e003eda9 completePlayerMessage": "Ecco la tua roba. Questa è l'ultima volta che consegno una batteria da carro. Ci puoi giurare.",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "È una cosa grossa! Spero che non sia stato troppo fastidioso. Va bene, lasciala qui. Sta facendo molto lavoro per me e non lo dimenticherò. Grazie, grazie, grazie.",
"6744a9dfef61d56e020b5c54": "Consegna l'oggetto: batteria militare 6-Sten-140-M",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Rompermi la schiena per te... Ok, cercherò una soluzione.",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "Già, non proprio. Una volta ho dovuto strisciare non poco con una batteria di quel tipo. E penso che non lo farò mai più.",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "Ecco la tua roba. Questa è l'ultima volta che consegno una batteria da carro. Stanne certo.",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "Sei sicuro che sia questo? Ok, ne sento l'odore, è sicuramente quello giusto!\n\nIeri Ragman mi ha parlato delle cantine del centro benessere, ho dovuto persino farlo ubriacare per poter finalmente cambiare argomento. Comunque, c'era un rifugio antiaereo sovietico sotto il centro benessere, e Ref stava per organizzare una nuova arena lì, per il pubblico VIP. Credo che in qualche modo fosse coinvolto anche Tagilla... No, era qualcos'altro...\n\nComunque, per questa arena, Ref aveva organizzato un grande acquisto di attrezzatura da Ragman, tutto era quasi pronto. Poi il nostro ospite si è improvvisamente tirato indietro. Perché? Chi cazzo lo sa.\n\nRagman era molto arrabbiato perché l'idea era fallita. Ma aveva già consegnato parte dell'attrezzatura e ha sicuramente usato le chiavi elettroniche che state cercando. È meglio che glielo chieda lei stesso, non ricordo molto di ieri. A proposito, grazie per il drink.",
"67a0da26a3b8d254347b8634": "Consegna una Bottiglia di Moonshine Fierce Hatchling",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "Ieri non sei riuscito ad arrivare al \"campione di prova\". Ecco, Ragman mi ha chiesto di darvelo perché possiate testarlo voi stessi.",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "A proposito, volevo chiederti: hai sentito parlare della struttura sotto il centro benessere e delle keycard per accedervi?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "Sorpresa Regalo",
"67e993b1ac26bf29380a320b name": "Sorpresa Regalo [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "Ho saputo che sei stato coinvolto in questa storia con Fence e Ref. Così hai deciso di venire da me. Vuoi fare un po' di confusione con Ref? Sarebbe vantaggioso per me. Portami lo sporco su di lui e troverò un modo per usarlo.",
"67e993b1ac26bf29380a320b failMessageText": "E allora perché venire da me , se poi le informazioni vengono date a uno di questi due?",
"67e993b1ac26bf29380a320b successMessageText": "Sono contento che tu abbia capito con chi è più vantaggioso essere amici.",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "Avrai le tue informazioni.",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "Ecco tutto quello che ho potuto trovare su Ref.",
"67e993f5ed537409f009da75 name": "Ricompensa Rimandata",
"67e993f5ed537409f009da75 name": "Ricompensa Rimandata [PVP ZONE]",
"67e993f5ed537409f009da75 description": "Beh, hai fatto un casino con le prove in un modo molto imbarazzante, ma certo, manterrò la mia parola. Ti farò avere il tuo fottuto contenitore. Ma ora ti chiederò qualcos'altro, visto che le cose sono diventate così brutte.",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "Va bene, ti sei guadagnato la tua ricompensa. Ma sappi che non accetterò più le tue stronzate. Se ricominci a scavare, finirai come quel vecchio campione.",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Soldi Facili - 1° Parte [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Com'è? Ascolta, ho un lavoro per te. Un mio caro vecchio amico sta cercando delle persone giuste per i suoi affari. Non conosco i dettagli, ma solo informazioni sulla prima fase del reclutamento, per così dire. Vedo che la cosa ti può interessare.\n\nHai mai sentito parlare dell'Arena? Dovresti attaccare in qua e in la per Tarkov alcuni volantini. Tipo \"vieni a dare un'occhiata\", cose di questo genere. Non mi guardare così, sai anche tu che le persone serie iniziano sempre dal basso! Ho un paio di manifesti pronti per te, ma se li perdi è un tuo dannato problema, capito? Portali alla roccaforte Scav al terminal doganale. Adesso puoi andarre.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "Tutto finito? Allora poi passerò. Nel frattempo ecco alcune chicche.",
"6834145ebc1f443d7603c8ab": "Piazza il poster \"Bison VS Undertaker\" negli alloggi della base Scav a Customs",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Soldi Facili - 2° Parte [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "Ciao, campione! Un mio amico ti ha dato un piccolo incarico di prova. Ora ho deciso di incontrarti di persona. La gente mi chiama Ref. Ospito l'Arena e i suoi grandi guadagni, ah!\n\nÈ chiaro che non ti dispiace fare soldi, e io ho un disperato bisogno di nuovo personale. Gli affari vanno a gonfie vele e io sono a corto di personale. Ci stiamo espandendo!\n\nAbbiamo in programma un altro incontro a breve. Come si diceva nell'antica Roma, \"il popolo chiede pane e circo\". Quest'ultimo va bene, ma il pane è in ritardo. Una piccola interruzione dei rifornimenti, non preoccuparti. Procurami solo cibo e alcolici per il pubblico.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Tutto ciò che hai portato è già stato inviato ai posti. Ben fatto.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Consegna l'oggetto trovato in raid: Bottiglia di birra Pevko",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "Bilanciamento - 1° Parte [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "Bilanciamento - 2° Parte [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Sorpresa [PVE ZONE]",
"68341b407559f4e6d50bc0ce description": "Ho avuto una grande idea per rendere l'Arena ancora migliore. E ho bisogno del tuo aiuto.\n\nDevo trovare delle piastre di armatura per un ragazzo. È un artista che si esibisce spesso, quindi è ora di dargli un aggiornamento per far emozionare il pubblico. Questo è il problema degli spettacoli: se non si aggiunge legna in tempo, il fuoco si spegne.\n\nBene, ora vai a prendermi delle piastre per l'armatura.\n\nLa folla strillerà quando lo vedrà!",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "Proprio quello di cui avevo bisogno! Non manca molto. Tutti saranno entusiasti quando vedranno i risultati, lo prometto! Ecco un casco come ricompensa. Il suo ultimo proprietario ne ha uno migliore, ah!",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Crea un Diversivo - 1° Parte [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "Avresti dovuto vedere il caos quando hanno trovato i mattoni! Che spettacolo! È un vero peccato non aver filmato tutto... Hai fatto un buon lavoro. Ecco la tua ricompensa.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Creare una distrazione - Parte 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "Non vedevi a chi stavi sparando?! Avevo grandi speranze per te.",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "A Grandi Altezze! - Parte 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "Non ho mai dubitato di te nemmeno per un secondo, fratello! Ma ricorda, siamo qui per intrattenere la gente. Abbiamo bisogno di uno spettacolo più grande! A volte sembra che stai sparando a delle lattine, sai?",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "A Grandi Altezze! - Parte 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "D'ora in poi sei sotto la mia ala, fratello. Farò in modo che tu possa progredire bene, ma dovrai mettere in moto il tuo culo più spesso.\n\nCominciamo con le basi. L'Arena è a Tarkov, ma i maggiori sponsor sono all'estero. Guardano tutte le partite, fanno scommesse, buttano soldi sui favoriti. E te dovrai far interessare alcuni di questi pezzi grossi. Attirare la loro attenzione, dimostrare che sei all'altezza. Fatti un nome. Una vittoria da sola non basta. Dimostra loro che sei in grado di fare una performance entusiasmante!",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "Vedo i progressi che stai facendo! All'estero iniziano a parlare di te. La gente è interessata. È un segno che stai facendo la cosa giusta!",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "A Grandi Altezze! - Parte 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "Stai andando alla grande! Ma è troppo presto per fermarsi. Fai brillare il tuo volto più spesso, impressiona il pubblico. Distinguiti. Diventa quello di cui parlano, quello che vengono a vedere. Poi arriveranno i soldi, e poi altre chicche: macchine, ragazze... Anche se Tarkov è un po' a corto di queste ultime.\n\nComunque, l'Arena è una grande opportunità di carriera in questo momento, ah!",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "E ora sei un passo più vicino alla serie A! Rispetto, fratello.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "A Grandi Altezze! - Parte 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "Com'è l'umore? Pronto per la battaglia? Pronto a brillare ancora una volta nell'Arena? Pronto a fare a pezzi qualche figlio di puttana? Le probabilità sono ancora contro di te, quindi non deludere il pubblico!\n\nA proposito di questo. Hai dei soldi? Scommetti su te stesso e vinci sei volte. Farai un sacco di soldi e diventerai famoso. Porta i soldi, io organizzerò tutto. Ma ti avverto: se perdi cinque volte, ricominci da capo.",
"683421515619c8e2a9031511 failMessageText": "Oh amico, ce l'hai quasi fatta. Riprova, il pubblico sembra ancora favorirti.",
"683421515619c8e2a9031511 successMessageText": "Ecco la tua busta paga. Ho detratto subito tutti i miei servizi: corruzione degli avversari, onorari e tutto il resto. Pensavi che lavorassi gratis?",
"683421515619c8e2a9031514": "Consegna di rubli dal saldo EFT",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Condizione di fallimento: Perdi 5 partite",
"683421515619c8e2a903151b": "Condizione di fallimento: Perdi 5 partite",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "A Grandi Altezze! - Parte 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "Ho buone notizie! Anzi, ottime notizie! Spero che tu abbia già scelto un piccolo appartamento nel quartiere d'élite di Tarkov, perché con tutti questi soldi lo avrete presto! Scherzo. Tutte le case di quei quartieri presto crolleranno comunque.\n\nComunque, alcune persone molto potenti dall'altra parte del confine sono interessate a te. Potenti e ricchi. Non posso dirti i loro nomi, è un segreto d'affari e non voglio violare quello che ho firmato. Quindi, queste persone sono pronte a prenderti sotto la loro ala e a sponsorizzarti pesantemente, ma prima vogliono delle garanzie.\n\nDovete diventare il campione. Volare in alto, volare al di sopra degli altri. Dovrai passare più tempo nell'Arena. Posso vedere nei tuoi occhi che sei pronto.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "Sei davvero bravo. Un uomo francese molto famoso - non vi dirò il suo nome per privacy - è interessato a te. È un po' viscido, ma offre un bel po' di soldi. Ho già organizzato la tua sponsorizzazione.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Contro coscienza - Parte 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Salve. Ho sentito che ora lavori per Ref. Ti tengo d'occhio da un po'.\n\nConoscevo un uomo che è rimasto invischiato proprio come te. È stato il precedente campione di Ref per un po' e poi all'improvviso è scomparso. E so per certo che non ha nulla a che fare con Kaban e Kollontay.\n\nSe non vuoi scomparire come questo ragazzo, cerca l'appartamento dell'ultimo campione. Credo che lì sia rimasto qualcosa di interessante. Il campione era solito frequentare i contrabbandieri del Dormitorio a Customs. Forse troverete qualche indizio su come entrare nell'appartamento.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "Vuoi chiedere te stesso a Ref? Beh, è stato un piacere conoscerti.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Scopri cosa è successo al campione",
"6834233fecd5cf3a440d8564": "Sopravvivi ed estrai dalla zona",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Contro coscienza - Parte 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "Quindi sta dicendo che era nell'appartamento dell'ultimo campione? Va bene, allora. Farò finta che non sia mai successo. Ricorda solo che la curiosità ha ucciso il gatto. E anche l'ultimo campione. Era un bravo ragazzo, mi piaceva, ma si è rammollito, ha perso il suo tocco.\n\nDovresti allenarti di più, non andare in giro per la città. Altrimenti, la tua classifica inizierà a scendere.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "Ecco fatto! Il tempo va speso per migliorare le proprie capacità. Chi sa cosa succede se non lo si fa?",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Decisioni, Decisioni [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "Ho sentito delle voci... Voci molto sgradevoli. Dicono che tu stia cercando di dissotterrare i miei affari.\n\nSenti, ci conosciamo da un po'. Sei come un fratello per me! Non fare qualcosa di cui poi ti pentirai. Meno sai, meglio dormirai, hai capito?\n\nFinché non avrò piena fiducia in te, i miei uomini ti terranno d'occhio. Non voglio che tu faccia nessuna bravata, campione. E se troverai qualcosa durante il tuo appuntamento con il vecchio campione, portamelo. Così potremo dimenticare questo piccolo e felice incidente.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "Hai fatto la scelta giusta. Non ho mai dubitato di te, fratello. D'ora in poi niente più scherzi, capito?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Consegna le informazioni trovate",
"6834254f2f0e2a7eb90b62f4": "Condizione di fallimento: Portare le informazioni a Fence",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Tra Due Fuochi [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "Quindi hai visto un cadavere. L'hai perquisito? Hai controllato intorno? Ti sto solo facendo notare che sei cieco. Il campione, per quanto ne so, teneva un diario. Sì, come un adolescente, ma questo gioca a tuo favore.\n\nPerché non vai di nuovo lì e dai un'occhiata più da vicino? Nel diario ci devono essere altre informazioni su Ref, del marcio su di lui. Fallo se vuoi smettere di essere un agnello sacrificabile nell'Arena.\n\nE un'altra cosa: se mi porterai qualche informazione su Ref che sia degna del mio tempo, ti pagherò bene.",
"683425dd8f5b18d29a05d9d1 failMessageText": "Vuoi stare sotto la gonna di Ref? Allora arrangiati.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Individua il nascondiglio del vecchio campione",
"683425dd8f5b18d29a05d9d4": "Ritorna al nascondiglio del vecchio campione a Customs",
"683425dd8f5b18d29a05d9d6": "Individua e ottieni le informazioni compromettenti su Ref.",
"683425dd8f5b18d29a05d9d8": "Consegna le informazioni trovate",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift [PVE ZONE]",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward [PVE ZONE]",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "Hand over the item: Lega Medal",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa completePlayerMessage": "",
"684009026ceedc792c09b2a7 name": "Club degli Hobby",
"684009026ceedc792c09b2a7 description": "Eccellente, la stavo aspettando. Ho un amico negli Stati Uniti, un professionista delle armi molto esperto. È ossessionato dalle armi da fuoco russe e da diversi anni sta lavorando al suo progetto personale, chiamato AK-50. Non credo che abbiate mai visto un AK che spara un calibro 50... Quello NATO, intendo.\n\nCosì il progetto è finalmente terminato e mi ha inviato un campione di prova. Un fucile così pesante e specializzato è troppo rischioso per essere importato in un unico pezzo, quindi abbiamo diviso il pacchetto in più parti. Ebbene, indovinate un po', le cose a Tarkov non sono andate secondo i piani. È uno shock, lo so.\n\nIl corpo principale è un pezzo unico ed è stato sequestrato nelle acque dell'Atlantico. Tuttavia, ho il progetto, quindi ho bisogno che lo usiate per costruirne uno nuovo per me. Non sarà certo facile nelle nostre condizioni. Ma almeno avrete una copia del progetto da utilizzare in seguito.\n\nIl paramano viene fornito con il tubo del gas ed è stato in qualche modo intercettato dagli sgherri di Skier. Ci sono voluti due anni per assemblare, montare e testare questa parte, e il costo dello sviluppo e dei prototipi ha già superato i due milioni.\n\nIl parapolvere è stato intercettato in uno dei posti di blocco già presenti a Tarkov. Non so quale, dovrete cercarli tutti. Ma il barile è sicuramente alla base militare. Glukhar ha organizzato personalmente un'imboscata al mio convoglio e a quanto pare sapeva di questo carico. Dovrete lottare per ottenerlo o sperare in un intervento divino.\n\nQuando avrete raccolto tutti i pezzi, consegnateli alla baracca della torre di trasmissione vicino alla stazione di servizio del distretto doganale. Chiederò alla mia squadra di consegnarli da lì, dopodiché sarò in grado di produrre i pezzi da solo. E, naturalmente, non dimenticherò il vostro aiuto.",
"684009026ceedc792c09b2a7 failMessageText": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "Ripulito tutto? Ben fatto, soldato.",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "Sempre più in alto",
"6842c27a38482d35ac0bd847 description": "Guadagna il livello 4 di Prestigio",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Scav upper 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Adik ジャージ",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "Sportswear",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Crye Precision AVS プレートキャリア (Tagilla エディション)",
"609e860ebd219504d8507525 ShortName": "AVS TE",
"609e860ebd219504d8507525 Description": "Crye Precision 社の AVS モジュールシステムをベースとしている、Tagilla の使い込まれたプレートキャリア。プロントパネルに3つのマガジンポーチを備えている。それだけだ。それ以上でも以下でもない。",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "SIG Sauer ROMEO8T reflex sight",
"60a23797a37c940de7062d02 ShortName": "ROMEO8T",
"60a23797a37c940de7062d02 Description": "The ROMEO8T reflex sight, designed for precision shooting for modern sporting rifles and shotguns. Manufactured by SIG Sauer.",
@@ -15116,6 +15122,9 @@
"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.",
"68406efe068a2d99940c1ce3 Name": "SSD",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "ソリッドステートドライブ。書き込み / 読み込みの速度に優れた記憶装置だ。",
"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.",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "Grenadier t-shirt",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Merch t-shirt",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "Road to Military Base V-Ex",
" Voip/DisabledForOffline": "オフラインモードではVOIPは無効です",
" kg": " kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "画面の解像度が変更されました。現在の解像度を保持しますか?",
"Resource": "資源",
"RestSpace": "休憩スペース",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "返却時間:",
"Revert": "初期化",
"Revert your settings to default?": "元の設定に戻してもよろしいですか?",
@@ -18970,6 +19015,21 @@
"TeamTab": "チーム",
"Teamkills": "チームキル",
"Terrain quality:": "地形の品質:",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "テクスチャ品質の設定は再起動後に適用されます",
"Texture quality:": "テクスチャ品質:",
"That item cannot be insured": "そのアイテムには保険を適用できない",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "やってみよう。<color=grey><i>(accept task \"{0}\")</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "完了だ。 <color=grey><i>(finish task \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "これを見つけた。 <color=grey><i>(hand over \"{0}\")</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "これだ。 <color=grey><i>(hand over item \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "ここがお前を乗せていける場所だ。どこがいい?",
"Trading/Dialog/PlayerTaxi/Name": "BTRで送ってもらう",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "よし、目的地 - Rodina cinema。値段はこれでいいか?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "イエローチーム",
"starvDeaths": "餓死",
"stationHeals": "治療回復",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "Smuggler's Basement",
"suicides": "自殺",
"survClass": "サバイバークラス",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "Easy Money - Part 1",
"66058cb22cee99303f1ba067 name": "Easy Money - Part 1 [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "Sup mate. Got a job for ya. An old pal of mine is looking for the right people for his business. I don't know the ins and outs, just the first stage of recruitment, so to speak. I see you're interested.\n\nYou heard anything about the Arena yet? You gotta put up flyers around Tarkov. Like \"come and check it out\", shit like that, you know. Hey, serious people always start small! I've got a couple of posters ready for ya, but if you lose them, it's your own bloody problem, got it? Bring them to the Scav stronghold at the customs terminal. Off you go then.",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "All done? I'll pass it on then. Here are some goodies in the meantime.",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "Easy Money - Part 2",
"66058cb5ae4719735349b9e8 name": "Easy Money - Part 2 [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "Hello, champion! A friend of mine gave you a little tryout assignment. Now I've decided to meet you in person. People call me Ref. Hosting the Arena and the big bucks, ha!\n\nClearly you don't mind making money, and I'm in desperate need of new staff. Business is booming, and I'm short-handed. We're expanding!\n\nWe got another fight planned soon. As they used to say in ancient Rome, \"the people demand bread and circuses.\" The latter is fine, but the bread is running late. A little supply disruption, don't worry about it. Just get me some food and booze for the audience.",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "Everything you brought has already been sent to the seats. Well done.",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "Balancing - Part 1",
"66058cb7c7f3584787181476 name": "Balancing - Part 1 [PVP ZONE]",
"66058cb7c7f3584787181476 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "Balancing - Part 2",
"66058cb9e8e4f17985230805 name": "Balancing - Part 2 [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "Surprise",
"66058cbb06ef1d50a60c1f46 name": "Surprise [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "I came up with a great idea to make the Arena even better. And I need your help.\n\nI need to find some armor plates for a guy. He's a frequent performer, so it's time to give him an upgrade to get the crowd excited. That's the thing about shows, you don't add wood in time, the fire goes out.\n\nWell, now go get me some armor plates. \n\nThe crowd's gonna squeal when they see him!",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "Just what I needed! Not much more to go. Everyone will be thrilled when they see the results, I promise! Here's a helmet as a reward. His last owner has a better one now, ha!",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "Create a Distraction - Part 1",
"66058cbd9f59e625462acc8e name": "Create a Distraction - Part 1 [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "Ha, you should have seen the chaos when they found the bricks! What a show! It's a damn shame we didn't film the whole thing... You did a good job. Here's your reward.",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "Create a Distraction - Part 2",
"66058cbf2f19c31a5a1337ec name": "Create a Distraction - Part 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"66058cbf2f19c31a5a1337ec failMessageText": "Can't you see who you're shooting at?! I had such high hopes for you.",
"66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "To Great Heights! - Part 1",
"66058cc1da30b620a34e6e86 name": "To Great Heights! - Part 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "I never doubted you for a second, brother! But remember, we're here to entertain people. We need a bigger show! Sometimes it looks like you're just shooting cans, you know.",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "To Great Heights! - Part 2",
"66058cc208308761cf390993 name": "To Great Heights! - Part 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "You're under my wing from now on, brother. I'll make sure you get progress good, but you're gonna have to get your ass in gear more often.\n\nLet's start with the basics. The Arena's in Tarkov, but the biggest sponsors are overseas. They watch every game, place bets, throw money at the favorites. And you need to get some of those big shots interested. Get their attention, show them you're worthy. Make a name for yourself. One win alone isn't enough to do it. Show them you can make a thrilling performance!",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "I see the progress you're making! They're starting to talk about you overseas. People are interested. It's a sign that you're doing the right thing!",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "To Great Heights! - Part 3",
"66058cc5bb83da7ba474aba9 name": "To Great Heights! - Part 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "You're doing great! But it's too early to stop. Shine your face more often, impress the audience. Stand out. Become the one they talk about, the one they come to see. Then the cash will come, and then other goodies: cars, girls... Although Tarkov is a little short on the latter.\n\nAnyway, the Arena is a great career opportunity right now, ha!",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "And now you're one step closer to the big leagues! Respect, brother.",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "To Great Heights! - Part 4",
"66058cc72cee99303f1ba069 name": "To Great Heights! - Part 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "How's the mood? Battle-ready? Ready to shine in the Arena once more? Ready to shred some motherfuckers? The odds are still stacked against you, so don't let the audience down!\n\nSpeaking of that. You got some money? You gotta bet on yourself and then win six times. You'll make tons of cash, and you'll be famous. Bring the money, I'll organize everything. Just be warned: if you lose five times, you start again.",
"66058cc72cee99303f1ba069 failMessageText": "Oh man, you almost did it. Try again, the audience still seems to favor you.",
"66058cc72cee99303f1ba069 successMessageText": "Here's your paycheck. I deducted all my services from it straight away: bribing opponents, fees, and all that. What, you thought I work for free?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "To Great Heights! - Part 5",
"66058cc9ae4719735349b9ea name": "To Great Heights! - Part 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "I have good news! Excellent news, in fact! I hope you've already picked out a little apartment in Tarkov's elite neighborhood, because you'll have it soon with all this money! Kidding. All the houses in those neighborhoods are soon gonna collapse anyway.\n\nAnyway, some very powerful people from across the border are interested in you. Powerful and wealthy. I can't tell you their names, it's a business secret, and I'm not violating what I signed. So, these people are ready to take you under their wing and sponsor you heavily, but first they want guarantees.\n\nYou need to become the champion. Fly high, soar above the rest. You're gonna have to spend more time in the Arena. I can see it in your eyes that you're ready.",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "You're really good. A very famous French man — I won't tell you his name for privacy — is interested in you. Lispy as hell, but he's offering good money. I've already arranged for your sponsorship.",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "Against the Conscience - Part 1",
"66058ccbc7f3584787181478 name": "Against the Conscience - Part 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "Hello. I hear you're working for Ref now. I've been keeping tabs on you for a while. \n\nI used to know a man who got tangled up just like you. He was Ref's previous champion for a while and then all of a sudden he disappeared. And I know for sure this had nothing to do with Kaban and Kollontay. \n\nIf you don't want to vanish the same way this guy did, look for the last champion's apartment. I believe there's something of interest left there. The champion used to hang out with the smugglers in Dorms on Customs. Maybe you'll find some clues on how to get into the apartment.",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "You want to ask Ref yourself? Well, it was nice knowing you.",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "Against the Conscience - Part 2",
"66058ccde8e4f17985230807 name": "Against the Conscience - Part 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "So you're saying you were in the last champion's apartment? All right then. I'll pretend like it never happened. Just remember, curiosity killed the cat. And the last champion, too. He was a good guy, I liked him, but he got soft, lost his touch.\n\nYou should be practicing more, not wandering around the city. Otherwise, your ranking will start to drop.",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "There you go! Time should be spent improving your skills. Who knows what happens if you don't?",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "Between Two Fires",
"66058ccf06ef1d50a60c1f48 name": "Between Two Fires [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.",
"66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.",
"66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "Decisions, Decisions",
"66058cd19f59e625462acc90 name": "Decisions, Decisions [PVP ZONE]",
"66058cd19f59e625462acc90 description": "I've been hearing rumors... Very unpleasant rumors. They say you're trying to dig my business up.\n\nLook, we've known each other for a while. You're like a brother to me! Don't do something you'll regret later. The less you know, the better you sleep, you hear that?\n\nUntil I'm absolutely confident in you, I'm gonna have my men watching you. I don't want you pulling any stunts, champ. And if you find anything during your little date with the old champion, bring it to me. Then we can forget about this happy little accident.",
"66058cd19f59e625462acc90 failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"66058cd19f59e625462acc90 successMessageText": "You made the right choice. Never doubted you, brother. All right, no more funny business from now on, you hear me?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.",
"6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.",
"6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.",
"6744a728352b4da8e003eda9 completePlayerMessage": "Here's your stuff. This is the last time I'm doing tank battery delivery. Surely.",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.",
"6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "Here's your stuff. This is the last time I'm doing tank battery delivery. Surely.",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "本当にこれか?オーケー、この匂い、間違いないな!\n\n昨日、Ragman が保養所の地下室のことについて話してくれたんだ。あいつが話題を変えるまでに、ベロベロに酔わせる羽目になったけどな。とにかく、保養所の地下にはソ連の防空壕があって、Ref もそこで VIP 観客向けの新しいアリーナを作るつもりだった。確か Tagilla も絡んでいたような...いや、別のことか...\n\nとにかく、このアリーナのために Ref は Ragman から大量の装備を調達して、準備はほぼ完了ってとこだったんだ。その後に、ホストの男が突然手を引いたんだ。なぜかって?知るかよ。\n\nRagman はこのアイデアが頓挫したことに相当怒ってた。でも、あいつは既にいくつかの装備を届けてたし、お前たちが探しているキーカードも間違いなく使ってた。あいつに直接聞いたほうがいい。昨日のことはよく覚えてないんだ。ところで、酒をありがとうな。",
"67a0da26a3b8d254347b8634": "密造酒 \"フィアス ハッチリング\" を渡す",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "昨日は「テスト用サンプル」までたどり着けなかったみたいだな。ほら、Ragman から自分でテストできるよう、あんたにこれを渡してくれって言われたんだ。",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "ところで聞きたいんだが、保養所の地下にある施設と、そこにアクセスするためのキーカードについて何か聞いたことはないか?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "Surprise Gift",
"67e993b1ac26bf29380a320b name": "Surprise Gift [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"67e993b1ac26bf29380a320b failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"67e993b1ac26bf29380a320b successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "You'll get your info.",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "Here's all I could find on Ref.",
"67e993f5ed537409f009da75 name": "Postponed Reward",
"67e993f5ed537409f009da75 name": "Postponed Reward [PVP ZONE]",
"67e993f5ed537409f009da75 description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Easy Money - Part 1 [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Sup mate. Got a job for ya. An old pal of mine is looking for the right people for his business. I don't know the ins and outs, just the first stage of recruitment, so to speak. I see you're interested.\n\nYou heard anything about the Arena yet? You gotta put up flyers around Tarkov. Like \"come and check it out\", shit like that, you know. Hey, serious people always start small! I've got a couple of posters ready for ya, but if you lose them, it's your own bloody problem, got it? Bring them to the Scav stronghold at the customs terminal. Off you go then.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "All done? I'll pass it on then. Here are some goodies in the meantime.",
"6834145ebc1f443d7603c8ab": "Plant the Bison vs Undertaker poster in the living quarters at the Scav base on Customs",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Easy Money - Part 2 [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "Hello, champion! A friend of mine gave you a little tryout assignment. Now I've decided to meet you in person. People call me Ref. Hosting the Arena and the big bucks, ha!\n\nClearly you don't mind making money, and I'm in desperate need of new staff. Business is booming, and I'm short-handed. We're expanding!\n\nWe got another fight planned soon. As they used to say in ancient Rome, \"the people demand bread and circuses.\" The latter is fine, but the bread is running late. A little supply disruption, don't worry about it. Just get me some food and booze for the audience.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Everything you brought has already been sent to the seats. Well done.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Hand over the found in raid item: Bottle of Pevko Light beer",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "Balancing - Part 1 [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "Balancing - Part 2 [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Surprise [PVE ZONE]",
"68341b407559f4e6d50bc0ce description": "I came up with a great idea to make the Arena even better. And I need your help.\n\nI need to find some armor plates for a guy. He's a frequent performer, so it's time to give him an upgrade to get the crowd excited. That's the thing about shows, you don't add wood in time, the fire goes out.\n\nWell, now go get me some armor plates. \n\nThe crowd's gonna squeal when they see him!",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "Just what I needed! Not much more to go. Everyone will be thrilled when they see the results, I promise! Here's a helmet as a reward. His last owner has a better one now, ha!",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Create a Distraction - Part 1 [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "Ha, you should have seen the chaos when they found the bricks! What a show! It's a damn shame we didn't film the whole thing... You did a good job. Here's your reward.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Create a Distraction - Part 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "Can't you see who you're shooting at?! I had such high hopes for you.",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "To Great Heights! - Part 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "I never doubted you for a second, brother! But remember, we're here to entertain people. We need a bigger show! Sometimes it looks like you're just shooting cans, you know.",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "To Great Heights! - Part 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "You're under my wing from now on, brother. I'll make sure you get progress good, but you're gonna have to get your ass in gear more often.\n\nLet's start with the basics. The Arena's in Tarkov, but the biggest sponsors are overseas. They watch every game, place bets, throw money at the favorites. And you need to get some of those big shots interested. Get their attention, show them you're worthy. Make a name for yourself. One win alone isn't enough to do it. Show them you can make a thrilling performance!",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "I see the progress you're making! They're starting to talk about you overseas. People are interested. It's a sign that you're doing the right thing!",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "To Great Heights! - Part 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "You're doing great! But it's too early to stop. Shine your face more often, impress the audience. Stand out. Become the one they talk about, the one they come to see. Then the cash will come, and then other goodies: cars, girls... Although Tarkov is a little short on the latter.\n\nAnyway, the Arena is a great career opportunity right now, ha!",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "And now you're one step closer to the big leagues! Respect, brother.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "To Great Heights! - Part 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "How's the mood? Battle-ready? Ready to shine in the Arena once more? Ready to shred some motherfuckers? The odds are still stacked against you, so don't let the audience down!\n\nSpeaking of that. You got some money? You gotta bet on yourself and then win six times. You'll make tons of cash, and you'll be famous. Bring the money, I'll organize everything. Just be warned: if you lose five times, you start again.",
"683421515619c8e2a9031511 failMessageText": "Oh man, you almost did it. Try again, the audience still seems to favor you.",
"683421515619c8e2a9031511 successMessageText": "Here's your paycheck. I deducted all my services from it straight away: bribing opponents, fees, and all that. What, you thought I work for free?",
"683421515619c8e2a9031514": "Hand over Roubles from the EFT balance",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Failure Condition: Lose 5 matches",
"683421515619c8e2a903151b": "Failure condition: Lose 5 matches",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "To Great Heights! - Part 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "I have good news! Excellent news, in fact! I hope you've already picked out a little apartment in Tarkov's elite neighborhood, because you'll have it soon with all this money! Kidding. All the houses in those neighborhoods are soon gonna collapse anyway.\n\nAnyway, some very powerful people from across the border are interested in you. Powerful and wealthy. I can't tell you their names, it's a business secret, and I'm not violating what I signed. So, these people are ready to take you under their wing and sponsor you heavily, but first they want guarantees.\n\nYou need to become the champion. Fly high, soar above the rest. You're gonna have to spend more time in the Arena. I can see it in your eyes that you're ready.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "You're really good. A very famous French man — I won't tell you his name for privacy — is interested in you. Lispy as hell, but he's offering good money. I've already arranged for your sponsorship.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Against the Conscience - Part 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Hello. I hear you're working for Ref now. I've been keeping tabs on you for a while. \n\nI used to know a man who got tangled up just like you. He was Ref's previous champion for a while and then all of a sudden he disappeared. And I know for sure this had nothing to do with Kaban and Kollontay. \n\nIf you don't want to vanish the same way this guy did, look for the last champion's apartment. I believe there's something of interest left there. The champion used to hang out with the smugglers in Dorms on Customs. Maybe you'll find some clues on how to get into the apartment.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "You want to ask Ref yourself? Well, it was nice knowing you.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Find out what happened to the champion",
"6834233fecd5cf3a440d8564": "Survive and extract from the location",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Against the Conscience - Part 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "So you're saying you were in the last champion's apartment? All right then. I'll pretend like it never happened. Just remember, curiosity killed the cat. And the last champion, too. He was a good guy, I liked him, but he got soft, lost his touch.\n\nYou should be practicing more, not wandering around the city. Otherwise, your ranking will start to drop.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "There you go! Time should be spent improving your skills. Who knows what happens if you don't?",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Decisions, Decisions [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "I've been hearing rumors... Very unpleasant rumors. They say you're trying to dig my business up.\n\nLook, we've known each other for a while. You're like a brother to me! Don't do something you'll regret later. The less you know, the better you sleep, you hear that?\n\nUntil I'm absolutely confident in you, I'm gonna have my men watching you. I don't want you pulling any stunts, champ. And if you find anything during your little date with the old champion, bring it to me. Then we can forget about this happy little accident.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "You made the right choice. Never doubted you, brother. All right, no more funny business from now on, you hear me?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Hand over the found info",
"6834254f2f0e2a7eb90b62f4": "Failure condition: Bring the information to Fence",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Between Two Fires [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.",
"683425dd8f5b18d29a05d9d1 failMessageText": "You want to stay under Ref's skirt? You do you then.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Locate the old champion's hideout",
"683425dd8f5b18d29a05d9d4": "Return to the old champion's hideout on Customs",
"683425dd8f5b18d29a05d9d6": "Locate and obtain the compromising information on Ref",
"683425dd8f5b18d29a05d9d8": "Hand over the found info",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift [PVE ZONE]",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward [PVE ZONE]",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "Hand over the item: Lega Medal",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa 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": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "Higher and Higher",
"6842c27a38482d35ac0bd847 description": "プレステージレベル4を得る",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",
@@ -5345,6 +5345,9 @@
"5cdea3197d6c8b20b577f017 Name": "Scav upper 2",
"5cdea3197d6c8b20b577f017 ShortName": "",
"5cdea3197d6c8b20b577f017 Description": "",
"5cdea33e7d6c8b0474535dac Name": "",
"5cdea33e7d6c8b0474535dac ShortName": "",
"5cdea33e7d6c8b0474535dac Description": "",
"5cdea3f87d6c8b647a3769b2 Name": "Adik sweatpants",
"5cdea3f87d6c8b647a3769b2 ShortName": "",
"5cdea3f87d6c8b647a3769b2 Description": "Sportswear",
@@ -7868,6 +7871,9 @@
"609e860ebd219504d8507525 Name": "Crye Precision AVS 플레이트 캐리어 (타길라 에디션)",
"609e860ebd219504d8507525 ShortName": "AVS TE",
"609e860ebd219504d8507525 Description": "세월의 흔적이 보이는 타길라의 플레이트 캐리어입니다. Crye Precision에서 제작한 AVS module system을 기반으로 한 이 플레이트 캐리어는 전면에 방탄판과 세 개의 탄창 파우치가 장착되어 있습니다. 이것만으로도 충분하고 딱히 추가할 건 없습니다.",
"609e86926e8078716f600883 Name": "",
"609e86926e8078716f600883 ShortName": "",
"609e86926e8078716f600883 Description": "",
"60a23797a37c940de7062d02 Name": "SIG Sauer ROMEO8T 반사 조준경 ",
"60a23797a37c940de7062d02 ShortName": "ROMEO8T",
"60a23797a37c940de7062d02 Description": "The ROMEO8T reflex sight, designed for precision shooting for modern sporting rifles and shotguns. Manufactured by SIG Sauer.",
@@ -15116,6 +15122,9 @@
"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.",
"68406efe068a2d99940c1ce3 Name": "SSD 드라이브 ",
"68406efe068a2d99940c1ce3 ShortName": "SSD",
"68406efe068a2d99940c1ce3 Description": "[SSD drive]\n솔리드 스테이트 드라이브(Solid State Drive, SSD)입니다. 정보를 저장하는데 쓰이며, 읽기 및 쓰기 능력이 향상되었습니다.",
"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.",
@@ -15218,6 +15227,39 @@
"685ebb9dd8500c455802e9c8 Name": "Grenadier t-shirt",
"685ebb9dd8500c455802e9c8 ShortName": "Grenadier",
"685ebb9dd8500c455802e9c8 Description": "Merch t-shirt",
"68666482abad2f29b00aab57 Name": "Programmer's phone",
"68666482abad2f29b00aab57 ShortName": "Phone",
"68666482abad2f29b00aab57 Description": "A broken generic phone, nothing out of the ordinary. However it might help to find Mechanic's acquaintance.",
"686665484c6f39163e076c3d Name": "Map piece",
"686665484c6f39163e076c3d ShortName": "Map",
"686665484c6f39163e076c3d Description": "A piece of a map found on a Scav. Will it lead to trouble or great riches? Time will tell.",
"6866663e022740fabd074ef2 Name": "Programmer's diary",
"6866663e022740fabd074ef2 ShortName": "Diary",
"6866663e022740fabd074ef2 Description": "An unremarkable diary, there are hundreds of those in Tarkov. But don't judge a book by its cover: this particular one contains many dangerous secrets.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"6866665cdf54e1190902df55 Name": "Programmer's diary (Copy)",
"6866665cdf54e1190902df55 ShortName": "Copy",
"6866665cdf54e1190902df55 Description": "A perfect duplicate of the programmer's diary. How Mechanic achieved such resemblance and why is a mystery.\n\nThe first page has a table of contents:\n• Update\n• Notes \n• Highlights\n• Encrypt\n• Agenda \n• Ruminates\n• Drafts",
"686666db646d47fec3018925 Name": "Disk with unknown data",
"686666db646d47fec3018925 ShortName": "Disk",
"686666db646d47fec3018925 Description": "The most ordinary-looking disk. The only thing that catches your eye is the “Ⅰ” written on top. If this is a first disk, then there must be a second one somewhere?",
"68666887df54e1190902df57 Name": "Decrypted intelligence folder",
"68666887df54e1190902df57 ShortName": "Decryption",
"68666887df54e1190902df57 Description": "A folder with decrypted data from the military flash drives. Someone out there would give millions for one of these.",
"687502c4660d147e2502a94f Name": "Disk with release version",
"687502c4660d147e2502a94f ShortName": "Release",
"687502c4660d147e2502a94f Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"68750378555049ec270cdab7 Name": "Disk with release version",
"68750378555049ec270cdab7 ShortName": "Release",
"68750378555049ec270cdab7 Description": "A simple disk with a handwritten note that this is the second version, the final one. Finally you can go through the whole game all the way to the end. Gotta write a review later!",
"6889e4cd3ff7e9cfbc0c507c Name": "Thumb drive with military data",
"6889e4cd3ff7e9cfbc0c507c ShortName": "Data",
"6889e4cd3ff7e9cfbc0c507c Description": "An unassuming thumb drive. Contains classified military data which was not taken out of the city in time. It's best to gather as many of these as you can. Just in case.",
"689b5f0f986634d56b0e099f Name": "Targrad poster",
"689b5f0f986634d56b0e099f ShortName": "Targrad",
"689b5f0f986634d56b0e099f Description": "A poster that someone left right outside the door of your hideout. A limited edition item. It'll remind you of all the time you spent in front of your monitor.",
"689f6f33b3b8c90a1c0545b8 Name": "Scratched disk",
"689f6f33b3b8c90a1c0545b8 ShortName": "Disk",
"689f6f33b3b8c90a1c0545b8 Description": "A scratched disk. The smudges make it impossible to tell what was actually written on it. Will it even start up?",
" V-ex_light": "Road to Military Base V-Ex",
" Voip/DisabledForOffline": "오프라인 모드에서는 VOIP 사용이 불가능합니다",
" kg": " kg",
@@ -18448,6 +18490,9 @@
"Resolution has changed. Do you want to keep current resolution?": "해상도가 변경되었습니다. 현재 해상도를 유지할까요?",
"Resource": "자원",
"RestSpace": "휴식 공간",
"RestSpace/NoDisc": "Insert the disk",
"RestSpace/NoFuel": "No fuel",
"RestSpace/Play": "PLAY",
"Return rate:": "회수 소요시간:",
"Revert": "되돌리기",
"Revert your settings to default?": "정말로 설정을 기본값으로 되돌리시겠습니까?",
@@ -18970,6 +19015,21 @@
"TeamTab": "Teams",
"Teamkills": "Teamkills",
"Terrain quality:": "지형 품질:",
"TextGame/Backpack": "Backpack",
"TextGame/Condition": "Health",
"TextGame/Health/1": "Healthy",
"TextGame/Health/2": "Minor scratches",
"TextGame/Health/3": "Minor injury",
"TextGame/Health/4": "Major injury",
"TextGame/StatPanel/Header": "Character",
"TextGameLocation/BattleField": "Battlefield",
"TextGameLocation/BurntVillage": "Burnt Village",
"TextGameLocation/Fort": "Crossing",
"TextGameLocation/Swamp": "Swamp",
"TextGameLocation/Targard": "Targrad",
"TextGameLocation/Temple": "Temple",
"TextGameLocation/Village": "Village",
"TextGameLocation/WitchHouse": "Witch House",
"Texture quality settings will be applied after restart.": "텍스처 품질 변경은 게임 재시작 후에 적용됩니다.",
"Texture quality:": "텍스처 품질:",
"That item cannot be insured": "해당 아이템은 보험에 들 수 없습니다",
@@ -19079,6 +19139,7 @@
"Trading/Dialog/PlayerAcceptQuest{0}": "그렇게 하지. <color=grey><i>(\"{0}\" 임무 수락)</i></color>",
"Trading/Dialog/PlayerFinishQuest{0}": "끝냈어. <color=grey><i>(\"{0}\" 임무 완료)</i></color>",
"Trading/Dialog/PlayerHandoveItem{0}": "이걸 찾았어. <color=grey><i>(\"{0}\" 건네주기)</i></color>",
"Trading/Dialog/PlayerHandoverItem{0}": "Here. <color=grey><i>(hand over item \"{0}\")</i></color>",
"Trading/Dialog/PlayerTaxi/Description": "Here's where I can drop you off. Pick one.",
"Trading/Dialog/PlayerTaxi/Name": "택시",
"Trading/Dialog/PlayerTaxi/TarkovStreets/p1/Description": "Alright, destination - Rodina cinema. Price okay for you?",
@@ -20802,6 +20863,15 @@
"spectator_yellow_team": "옐로우 팀",
"starvDeaths": "아사 횟수",
"stationHeals": "치료 서비스 이용 횟수",
"storyteller_CountOfCoins": "Gold",
"storyteller_HasTheBook": "Book",
"storyteller_HasTheKey": "Key",
"storyteller_HasTheMirror": "Witch's mirror",
"storyteller_HasTheRing": "Ring",
"storyteller_HasTheSausage": "Sausage slice",
"storyteller_HasTheScroll": "Scroll",
"storyteller_HasTheSword": "Sword",
"storyteller_hasTheLetterFromTheHeadman": "Elder's letter",
"streets_secret_onyx": "Smugglers' Basement",
"suicides": "자살 횟수",
"survClass": "생존 등급",
@@ -26478,7 +26548,7 @@
"6605852a0e8e4148260fde76 acceptPlayerMessage": "",
"6605852a0e8e4148260fde76 declinePlayerMessage": "",
"6605852a0e8e4148260fde76 completePlayerMessage": "",
"66058cb22cee99303f1ba067 name": "Easy Money - Part 1",
"66058cb22cee99303f1ba067 name": "Easy Money - Part 1 [PVP ZONE]",
"66058cb22cee99303f1ba067 description": "Sup mate. Got a job for ya. An old pal of mine is looking for the right people for his business. I don't know the ins and outs, just the first stage of recruitment, so to speak. I see you're interested.\n\nYou heard anything about the Arena yet? You gotta put up flyers around Tarkov. Like \"come and check it out\", shit like that, you know. Hey, serious people always start small! I've got a couple of posters ready for ya, but if you lose them, it's your own bloody problem, got it? Bring them to the Scav stronghold at the customs terminal. Off you go then.",
"66058cb22cee99303f1ba067 failMessageText": "",
"66058cb22cee99303f1ba067 successMessageText": "All done? I'll pass it on then. Here are some goodies in the meantime.",
@@ -26492,7 +26562,7 @@
"66058cb22cee99303f1ba067 acceptPlayerMessage": "",
"66058cb22cee99303f1ba067 declinePlayerMessage": "",
"66058cb22cee99303f1ba067 completePlayerMessage": "",
"66058cb5ae4719735349b9e8 name": "Easy Money - Part 2",
"66058cb5ae4719735349b9e8 name": "Easy Money - Part 2 [PVP ZONE]",
"66058cb5ae4719735349b9e8 description": "Hello, champion! A friend of mine gave you a little tryout assignment. Now I've decided to meet you in person. People call me Ref. Hosting the Arena and the big bucks, ha!\n\nClearly you don't mind making money, and I'm in desperate need of new staff. Business is booming, and I'm short-handed. We're expanding!\n\nWe got another fight planned soon. As they used to say in ancient Rome, \"the people demand bread and circuses.\" The latter is fine, but the bread is running late. A little supply disruption, don't worry about it. Just get me some food and booze for the audience.",
"66058cb5ae4719735349b9e8 failMessageText": "",
"66058cb5ae4719735349b9e8 successMessageText": "Everything you brought has already been sent to the seats. Well done.",
@@ -26503,7 +26573,7 @@
"66058cb5ae4719735349b9e8 acceptPlayerMessage": "",
"66058cb5ae4719735349b9e8 declinePlayerMessage": "",
"66058cb5ae4719735349b9e8 completePlayerMessage": "",
"66058cb7c7f3584787181476 name": "Balancing - Part 1",
"66058cb7c7f3584787181476 name": "Balancing - Part 1 [PVP ZONE]",
"66058cb7c7f3584787181476 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"66058cb7c7f3584787181476 failMessageText": "",
"66058cb7c7f3584787181476 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
@@ -26511,7 +26581,7 @@
"66058cb7c7f3584787181476 acceptPlayerMessage": "",
"66058cb7c7f3584787181476 declinePlayerMessage": "",
"66058cb7c7f3584787181476 completePlayerMessage": "",
"66058cb9e8e4f17985230805 name": "Balancing - Part 2",
"66058cb9e8e4f17985230805 name": "Balancing - Part 2 [PVP ZONE]",
"66058cb9e8e4f17985230805 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"66058cb9e8e4f17985230805 failMessageText": "",
"66058cb9e8e4f17985230805 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
@@ -26519,7 +26589,7 @@
"66058cb9e8e4f17985230805 acceptPlayerMessage": "",
"66058cb9e8e4f17985230805 declinePlayerMessage": "",
"66058cb9e8e4f17985230805 completePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 name": "Surprise",
"66058cbb06ef1d50a60c1f46 name": "Surprise [PVP ZONE]",
"66058cbb06ef1d50a60c1f46 description": "I came up with a great idea to make the Arena even better. And I need your help.\n\nI need to find some armor plates for a guy. He's a frequent performer, so it's time to give him an upgrade to get the crowd excited. That's the thing about shows, you don't add wood in time, the fire goes out.\n\nWell, now go get me some armor plates. \n\nThe crowd's gonna squeal when they see him!",
"66058cbb06ef1d50a60c1f46 failMessageText": "",
"66058cbb06ef1d50a60c1f46 successMessageText": "Just what I needed! Not much more to go. Everyone will be thrilled when they see the results, I promise! Here's a helmet as a reward. His last owner has a better one now, ha!",
@@ -26529,7 +26599,7 @@
"66058cbb06ef1d50a60c1f46 acceptPlayerMessage": "",
"66058cbb06ef1d50a60c1f46 declinePlayerMessage": "",
"66058cbb06ef1d50a60c1f46 completePlayerMessage": "",
"66058cbd9f59e625462acc8e name": "Create a Distraction - Part 1",
"66058cbd9f59e625462acc8e name": "Create a Distraction - Part 1 [PVP ZONE]",
"66058cbd9f59e625462acc8e description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"66058cbd9f59e625462acc8e failMessageText": "",
"66058cbd9f59e625462acc8e successMessageText": "Ha, you should have seen the chaos when they found the bricks! What a show! It's a damn shame we didn't film the whole thing... You did a good job. Here's your reward.",
@@ -26538,7 +26608,7 @@
"66058cbd9f59e625462acc8e acceptPlayerMessage": "",
"66058cbd9f59e625462acc8e declinePlayerMessage": "",
"66058cbd9f59e625462acc8e completePlayerMessage": "",
"66058cbf2f19c31a5a1337ec name": "Create a Distraction - Part 2",
"66058cbf2f19c31a5a1337ec name": "Create a Distraction - Part 2 [PVP ZONE]",
"66058cbf2f19c31a5a1337ec description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"66058cbf2f19c31a5a1337ec failMessageText": "Can't you see who you're shooting at?! I had such high hopes for you.",
"66058cbf2f19c31a5a1337ec successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
@@ -26548,7 +26618,7 @@
"66058cbf2f19c31a5a1337ec acceptPlayerMessage": "",
"66058cbf2f19c31a5a1337ec declinePlayerMessage": "",
"66058cbf2f19c31a5a1337ec completePlayerMessage": "",
"66058cc1da30b620a34e6e86 name": "To Great Heights! - Part 1",
"66058cc1da30b620a34e6e86 name": "To Great Heights! - Part 1 [PVP ZONE]",
"66058cc1da30b620a34e6e86 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"66058cc1da30b620a34e6e86 failMessageText": "",
"66058cc1da30b620a34e6e86 successMessageText": "I never doubted you for a second, brother! But remember, we're here to entertain people. We need a bigger show! Sometimes it looks like you're just shooting cans, you know.",
@@ -26556,7 +26626,7 @@
"66058cc1da30b620a34e6e86 acceptPlayerMessage": "",
"66058cc1da30b620a34e6e86 declinePlayerMessage": "",
"66058cc1da30b620a34e6e86 completePlayerMessage": "",
"66058cc208308761cf390993 name": "To Great Heights! - Part 2",
"66058cc208308761cf390993 name": "To Great Heights! - Part 2 [PVP ZONE]",
"66058cc208308761cf390993 description": "You're under my wing from now on, brother. I'll make sure you get progress good, but you're gonna have to get your ass in gear more often.\n\nLet's start with the basics. The Arena's in Tarkov, but the biggest sponsors are overseas. They watch every game, place bets, throw money at the favorites. And you need to get some of those big shots interested. Get their attention, show them you're worthy. Make a name for yourself. One win alone isn't enough to do it. Show them you can make a thrilling performance!",
"66058cc208308761cf390993 failMessageText": "",
"66058cc208308761cf390993 successMessageText": "I see the progress you're making! They're starting to talk about you overseas. People are interested. It's a sign that you're doing the right thing!",
@@ -26565,7 +26635,7 @@
"66058cc208308761cf390993 acceptPlayerMessage": "",
"66058cc208308761cf390993 declinePlayerMessage": "",
"66058cc208308761cf390993 completePlayerMessage": "",
"66058cc5bb83da7ba474aba9 name": "To Great Heights! - Part 3",
"66058cc5bb83da7ba474aba9 name": "To Great Heights! - Part 3 [PVP ZONE]",
"66058cc5bb83da7ba474aba9 description": "You're doing great! But it's too early to stop. Shine your face more often, impress the audience. Stand out. Become the one they talk about, the one they come to see. Then the cash will come, and then other goodies: cars, girls... Although Tarkov is a little short on the latter.\n\nAnyway, the Arena is a great career opportunity right now, ha!",
"66058cc5bb83da7ba474aba9 failMessageText": "",
"66058cc5bb83da7ba474aba9 successMessageText": "And now you're one step closer to the big leagues! Respect, brother.",
@@ -26573,7 +26643,7 @@
"66058cc5bb83da7ba474aba9 acceptPlayerMessage": "",
"66058cc5bb83da7ba474aba9 declinePlayerMessage": "",
"66058cc5bb83da7ba474aba9 completePlayerMessage": "",
"66058cc72cee99303f1ba069 name": "To Great Heights! - Part 4",
"66058cc72cee99303f1ba069 name": "To Great Heights! - Part 4 [PVP ZONE]",
"66058cc72cee99303f1ba069 description": "How's the mood? Battle-ready? Ready to shine in the Arena once more? Ready to shred some motherfuckers? The odds are still stacked against you, so don't let the audience down!\n\nSpeaking of that. You got some money? You gotta bet on yourself and then win six times. You'll make tons of cash, and you'll be famous. Bring the money, I'll organize everything. Just be warned: if you lose five times, you start again.",
"66058cc72cee99303f1ba069 failMessageText": "Oh man, you almost did it. Try again, the audience still seems to favor you.",
"66058cc72cee99303f1ba069 successMessageText": "Here's your paycheck. I deducted all my services from it straight away: bribing opponents, fees, and all that. What, you thought I work for free?",
@@ -26584,7 +26654,7 @@
"66058cc72cee99303f1ba069 acceptPlayerMessage": "",
"66058cc72cee99303f1ba069 declinePlayerMessage": "",
"66058cc72cee99303f1ba069 completePlayerMessage": "",
"66058cc9ae4719735349b9ea name": "To Great Heights! - Part 5",
"66058cc9ae4719735349b9ea name": "To Great Heights! - Part 5 [PVP ZONE]",
"66058cc9ae4719735349b9ea description": "I have good news! Excellent news, in fact! I hope you've already picked out a little apartment in Tarkov's elite neighborhood, because you'll have it soon with all this money! Kidding. All the houses in those neighborhoods are soon gonna collapse anyway.\n\nAnyway, some very powerful people from across the border are interested in you. Powerful and wealthy. I can't tell you their names, it's a business secret, and I'm not violating what I signed. So, these people are ready to take you under their wing and sponsor you heavily, but first they want guarantees.\n\nYou need to become the champion. Fly high, soar above the rest. You're gonna have to spend more time in the Arena. I can see it in your eyes that you're ready.",
"66058cc9ae4719735349b9ea failMessageText": "",
"66058cc9ae4719735349b9ea successMessageText": "You're really good. A very famous French man — I won't tell you his name for privacy — is interested in you. Lispy as hell, but he's offering good money. I've already arranged for your sponsorship.",
@@ -26592,7 +26662,7 @@
"66058cc9ae4719735349b9ea acceptPlayerMessage": "",
"66058cc9ae4719735349b9ea declinePlayerMessage": "",
"66058cc9ae4719735349b9ea completePlayerMessage": "",
"66058ccbc7f3584787181478 name": "Against the Conscience - Part 1",
"66058ccbc7f3584787181478 name": "Against the Conscience - Part 1 [PVP ZONE]",
"66058ccbc7f3584787181478 description": "Hello. I hear you're working for Ref now. I've been keeping tabs on you for a while. \n\nI used to know a man who got tangled up just like you. He was Ref's previous champion for a while and then all of a sudden he disappeared. And I know for sure this had nothing to do with Kaban and Kollontay. \n\nIf you don't want to vanish the same way this guy did, look for the last champion's apartment. I believe there's something of interest left there. The champion used to hang out with the smugglers in Dorms on Customs. Maybe you'll find some clues on how to get into the apartment.",
"66058ccbc7f3584787181478 failMessageText": "",
"66058ccbc7f3584787181478 successMessageText": "You want to ask Ref yourself? Well, it was nice knowing you.",
@@ -26603,7 +26673,7 @@
"66058ccbc7f3584787181478 acceptPlayerMessage": "",
"66058ccbc7f3584787181478 declinePlayerMessage": "",
"66058ccbc7f3584787181478 completePlayerMessage": "",
"66058ccde8e4f17985230807 name": "Against the Conscience - Part 2",
"66058ccde8e4f17985230807 name": "Against the Conscience - Part 2 [PVP ZONE]",
"66058ccde8e4f17985230807 description": "So you're saying you were in the last champion's apartment? All right then. I'll pretend like it never happened. Just remember, curiosity killed the cat. And the last champion, too. He was a good guy, I liked him, but he got soft, lost his touch.\n\nYou should be practicing more, not wandering around the city. Otherwise, your ranking will start to drop.",
"66058ccde8e4f17985230807 failMessageText": "",
"66058ccde8e4f17985230807 successMessageText": "There you go! Time should be spent improving your skills. Who knows what happens if you don't?",
@@ -26620,7 +26690,7 @@
"66058ccde8e4f17985230807 acceptPlayerMessage": "",
"66058ccde8e4f17985230807 declinePlayerMessage": "",
"66058ccde8e4f17985230807 completePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 name": "Between Two Fires",
"66058ccf06ef1d50a60c1f48 name": "Between Two Fires [PVP ZONE]",
"66058ccf06ef1d50a60c1f48 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.",
"66058ccf06ef1d50a60c1f48 failMessageText": "You want to stay under Ref's skirt? You do you then.",
"66058ccf06ef1d50a60c1f48 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
@@ -26633,7 +26703,7 @@
"66058ccf06ef1d50a60c1f48 acceptPlayerMessage": "",
"66058ccf06ef1d50a60c1f48 declinePlayerMessage": "",
"66058ccf06ef1d50a60c1f48 completePlayerMessage": "",
"66058cd19f59e625462acc90 name": "Decisions, Decisions",
"66058cd19f59e625462acc90 name": "Decisions, Decisions [PVP ZONE]",
"66058cd19f59e625462acc90 description": "I've been hearing rumors... Very unpleasant rumors. They say you're trying to dig my business up.\n\nLook, we've known each other for a while. You're like a brother to me! Don't do something you'll regret later. The less you know, the better you sleep, you hear that?\n\nUntil I'm absolutely confident in you, I'm gonna have my men watching you. I don't want you pulling any stunts, champ. And if you find anything during your little date with the old champion, bring it to me. Then we can forget about this happy little accident.",
"66058cd19f59e625462acc90 failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"66058cd19f59e625462acc90 successMessageText": "You made the right choice. Never doubted you, brother. All right, no more funny business from now on, you hear me?",
@@ -28229,6 +28299,7 @@
"6744a728352b4da8e003eda9 failMessageText": "",
"6744a728352b4da8e003eda9 successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.",
"6744a964dc1b1e2ee134ffeb": "Hand over the item: 6-STEN-140-M military battery",
"683db718d1c3c712dac4b5c9": "Find the item: 6-STEN-140-M military battery",
"6744a728352b4da8e003eda9 acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.",
"6744a728352b4da8e003eda9 declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.",
"6744a728352b4da8e003eda9 completePlayerMessage": "Here's your stuff. This is the last time I'm doing tank battery delivery. Surely.",
@@ -28237,6 +28308,7 @@
"6744a9dfef61d56e020b5c4a failMessageText": "",
"6744a9dfef61d56e020b5c4a successMessageText": "That's a big one! I hope it wasn't too much of a hassle. Alright, just leave it right here. You're doing a lot of work for me, and I won't forget it. Thank you.",
"6744a9dfef61d56e020b5c54": "Hand over the item: 6-STEN-140-M military battery",
"683db86c1090d855fb0f2c23": "Find the item: 6-STEN-140-M military battery",
"6744a9dfef61d56e020b5c4a acceptPlayerMessage": "Breaking my back for you... Okay, I'll figure it out.",
"6744a9dfef61d56e020b5c4a declinePlayerMessage": "Yeah no. One time I had to crawl for several hours with a battery like that. Sorry, but I'm not doing this.",
"6744a9dfef61d56e020b5c4a completePlayerMessage": "Here's your stuff. This is the last time I'm doing tank battery delivery. Surely.",
@@ -28837,6 +28909,7 @@
"67a096ed77dd677f600804ba failMessageText": "",
"67a096ed77dd677f600804ba successMessageText": "Are you sure this is it? Okay, I can smell it, that's definitely the one! \n\nRagman told me about the health resort's cellars yesterday, I even had to fucking get him wasted so we could finally change the subject. Anyway, there was a Soviet bomb shelter under the health resort, and Ref was going to organize a new arena there, for VIP audiences. I think it also involved Tagilla somehow... No, it was something else...\n\nAnyway, for this arena, Ref organized a big gear acquisition from Ragman, everything was almost ready. And then our host guy suddenly backed out. Why? Who the fuck knows.\n\nRagman was really upset that the idea had fallen through. But he'd already delivered some of the gear, and he definitely used those keycards you're looking for. You better ask him yourself, I don't remember much from yesterday. Thanks for the drink, by the way.",
"67a0da26a3b8d254347b8634": "[Moonshine 문샤인 \"맹렬한 도끼런\" 밀주] 건네주기",
"683dbecbfc878c4569e892c2": "Find a Bottle of Fierce Hatchling moonshine",
"67a096ed77dd677f600804ba acceptPlayerMessage": "You didn't make it to the \"test sample\" yesterday. Here, Ragman asked me to give it to you so that you could test it yourself.",
"67a096ed77dd677f600804ba declinePlayerMessage": "",
"67a096ed77dd677f600804ba completePlayerMessage": "By the way, I wanted to ask you: have you heard anything about the facility under the health resort and the keycards to access it?",
@@ -29063,7 +29136,7 @@
"67dd5d2231fb19ec9408894a acceptPlayerMessage": "",
"67dd5d2231fb19ec9408894a declinePlayerMessage": "",
"67dd5d2231fb19ec9408894a completePlayerMessage": "",
"67e993b1ac26bf29380a320b name": "Surprise Gift",
"67e993b1ac26bf29380a320b name": "Surprise Gift [PVP ZONE]",
"67e993b1ac26bf29380a320b description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"67e993b1ac26bf29380a320b failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"67e993b1ac26bf29380a320b successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
@@ -29075,7 +29148,7 @@
"67e993b1ac26bf29380a320b acceptPlayerMessage": "You'll get your info.",
"67e993b1ac26bf29380a320b declinePlayerMessage": "",
"67e993b1ac26bf29380a320b completePlayerMessage": "Here's all I could find on Ref.",
"67e993f5ed537409f009da75 name": "Postponed Reward",
"67e993f5ed537409f009da75 name": "Postponed Reward [PVP ZONE]",
"67e993f5ed537409f009da75 description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"67e993f5ed537409f009da75 failMessageText": "",
"67e993f5ed537409f009da75 successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
@@ -29139,6 +29212,234 @@
"67f3eacef649e7bceb0bb455 acceptPlayerMessage": "",
"67f3eacef649e7bceb0bb455 declinePlayerMessage": "",
"67f3eacef649e7bceb0bb455 completePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 name": "",
"67f8fe8a60a2debc690c9db8 description": "",
"67f8fe8a60a2debc690c9db8 failMessageText": "",
"67f8fe8a60a2debc690c9db8 successMessageText": "",
"67f8fe8a60a2debc690c9db8 acceptPlayerMessage": "",
"67f8fe8a60a2debc690c9db8 declinePlayerMessage": "",
"67f8fe8a60a2debc690c9db8 completePlayerMessage": "",
"67f9063f80780f9e560a59f9 name": "",
"67f9063f80780f9e560a59f9 description": "",
"67f9063f80780f9e560a59f9 failMessageText": "",
"67f9063f80780f9e560a59f9 successMessageText": "",
"6806383ab59746146610152f": "Go through the first dialog with the LightKeeper",
"67f9063f80780f9e560a59f9 acceptPlayerMessage": "",
"67f9063f80780f9e560a59f9 declinePlayerMessage": "",
"67f9063f80780f9e560a59f9 completePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b name": "",
"67f90d01b69eec2eaa0ece4b description": "",
"67f90d01b69eec2eaa0ece4b failMessageText": "",
"67f90d01b69eec2eaa0ece4b successMessageText": "",
"67f90d01b69eec2eaa0ece4b acceptPlayerMessage": "",
"67f90d01b69eec2eaa0ece4b declinePlayerMessage": "",
"67f90d01b69eec2eaa0ece4b completePlayerMessage": "",
"6807916af73717479702b498 name": "",
"6807916af73717479702b498 description": "",
"6807916af73717479702b498 failMessageText": "",
"6807916af73717479702b498 successMessageText": "",
"6807916af73717479702b498 acceptPlayerMessage": "",
"6807916af73717479702b498 declinePlayerMessage": "",
"6807916af73717479702b498 completePlayerMessage": "",
"6807939beb6f322504024ab8 name": "",
"6807939beb6f322504024ab8 description": "",
"6807939beb6f322504024ab8 failMessageText": "",
"6807939beb6f322504024ab8 successMessageText": "",
"6807939beb6f322504024ab8 acceptPlayerMessage": "",
"6807939beb6f322504024ab8 declinePlayerMessage": "",
"6807939beb6f322504024ab8 completePlayerMessage": "",
"6807966ea6fff5436f069efb name": "",
"6807966ea6fff5436f069efb description": "",
"6807966ea6fff5436f069efb failMessageText": "",
"6807966ea6fff5436f069efb successMessageText": "",
"6807966ea6fff5436f069efb acceptPlayerMessage": "",
"6807966ea6fff5436f069efb declinePlayerMessage": "",
"6807966ea6fff5436f069efb completePlayerMessage": "",
"680797cb71e1d99b9f0b35ea name": "",
"680797cb71e1d99b9f0b35ea description": "",
"680797cb71e1d99b9f0b35ea failMessageText": "",
"680797cb71e1d99b9f0b35ea successMessageText": "",
"680797cb71e1d99b9f0b35ea acceptPlayerMessage": "",
"680797cb71e1d99b9f0b35ea declinePlayerMessage": "",
"680797cb71e1d99b9f0b35ea completePlayerMessage": "",
"6807989e11b7c34ba0059b00 name": "",
"6807989e11b7c34ba0059b00 description": "",
"6807989e11b7c34ba0059b00 failMessageText": "",
"6807989e11b7c34ba0059b00 successMessageText": "",
"6807989e11b7c34ba0059b00 acceptPlayerMessage": "",
"6807989e11b7c34ba0059b00 declinePlayerMessage": "",
"6807989e11b7c34ba0059b00 completePlayerMessage": "",
"680fa1f6fff4a8d640066b42 name": "",
"680fa1f6fff4a8d640066b42 description": "",
"680fa1f6fff4a8d640066b42 failMessageText": "",
"680fa1f6fff4a8d640066b42 successMessageText": "",
"680fa1f6fff4a8d640066b42 acceptPlayerMessage": "",
"680fa1f6fff4a8d640066b42 declinePlayerMessage": "",
"680fa1f6fff4a8d640066b42 completePlayerMessage": "",
"6834145ebc1f443d7603c8a7 name": "Easy Money - Part 1 [PVE ZONE]",
"6834145ebc1f443d7603c8a7 description": "Sup mate. Got a job for ya. An old pal of mine is looking for the right people for his business. I don't know the ins and outs, just the first stage of recruitment, so to speak. I see you're interested.\n\nYou heard anything about the Arena yet? You gotta put up flyers around Tarkov. Like \"come and check it out\", shit like that, you know. Hey, serious people always start small! I've got a couple of posters ready for ya, but if you lose them, it's your own bloody problem, got it? Bring them to the Scav stronghold at the customs terminal. Off you go then.",
"6834145ebc1f443d7603c8a7 failMessageText": "",
"6834145ebc1f443d7603c8a7 successMessageText": "All done? I'll pass it on then. Here are some goodies in the meantime.",
"6834145ebc1f443d7603c8ab": "Plant the Bison vs Undertaker poster in the living quarters at the Scav base on Customs",
"6834145ebc1f443d7603c8a7 acceptPlayerMessage": "",
"6834145ebc1f443d7603c8a7 declinePlayerMessage": "",
"6834145ebc1f443d7603c8a7 completePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 name": "Easy Money - Part 2 [PVE ZONE]",
"6834158f2f0e2a7eb90b62c8 description": "Hello, champion! A friend of mine gave you a little tryout assignment. Now I've decided to meet you in person. People call me Ref. Hosting the Arena and the big bucks, ha!\n\nClearly you don't mind making money, and I'm in desperate need of new staff. Business is booming, and I'm short-handed. We're expanding!\n\nWe got another fight planned soon. As they used to say in ancient Rome, \"the people demand bread and circuses.\" The latter is fine, but the bread is running late. A little supply disruption, don't worry about it. Just get me some food and booze for the audience.",
"6834158f2f0e2a7eb90b62c8 failMessageText": "",
"6834158f2f0e2a7eb90b62c8 successMessageText": "Everything you brought has already been sent to the seats. Well done.",
"6834158f2f0e2a7eb90b62cb": "Hand over the found in raid items from the Drinks category",
"6834158f2f0e2a7eb90b62cc": "Hand over the found in raid item: Bottle of Pevko Light beer",
"6834158f2f0e2a7eb90b62c8 acceptPlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 declinePlayerMessage": "",
"6834158f2f0e2a7eb90b62c8 completePlayerMessage": "",
"68341846186efa3c5b07f989 name": "Balancing - Part 1 [PVE ZONE]",
"68341846186efa3c5b07f989 description": "You did a great job on my assignments. I also ran you through my databases... Just a precaution. You don't hire just anybody, you know what I mean, brother? I'm promoting you to a tester! You're gonna be testing equipment for the Arena.\n\nI've just received a good batch of bullpups for a delicious price. Go ahead and try them out on some hobos. After that, I'll decide if these rifles will go to my cleanup guys or the gladiators.",
"68341846186efa3c5b07f989 failMessageText": "",
"68341846186efa3c5b07f989 successMessageText": "Not a bad gun, eh? Truth be told, I have a soft spot for bullpups. The AUG is obviously difficult to maintain, it has a weird trigger mechanism, hard to get used to, plus it's easy to forget about the ejection port side. Certainly not an amateur's gun. But it feeks so good though! I'd rather not give it to the cleanup crew. \n\nAnyway, here's your reward.",
"68341846186efa3c5b07f98c": "Eliminate Scavs while using a Steyr AUG on any location",
"68341846186efa3c5b07f989 acceptPlayerMessage": "",
"68341846186efa3c5b07f989 declinePlayerMessage": "",
"68341846186efa3c5b07f989 completePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 name": "Balancing - Part 2 [PVE ZONE]",
"68341a0b2f0e2a7eb90b62d4 description": "Right, now it's time to test some body armor. This is for the cleanup crew only. Let's see how it holds up against real mercs. Try killing a few PMCs while wearing this PACA armor. After that, I'll see what else I can come up with.",
"68341a0b2f0e2a7eb90b62d4 failMessageText": "",
"68341a0b2f0e2a7eb90b62d4 successMessageText": "Alive? Good! What, the armor's shit and doesn't hold against anything? Well shit, that's a shame. It'll be too weak for the cleanup crew, so I'll have to find a better model.\n\nHere's your reward. Let's finish with this balancing thing for now.",
"68341a0b2f0e2a7eb90b62d7": "Eliminate PMC operatives while wearing a PACA Soft Armor on any location",
"68341a0b2f0e2a7eb90b62d4 acceptPlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 declinePlayerMessage": "",
"68341a0b2f0e2a7eb90b62d4 completePlayerMessage": "",
"68341b407559f4e6d50bc0ce name": "Surprise [PVE ZONE]",
"68341b407559f4e6d50bc0ce description": "I came up with a great idea to make the Arena even better. And I need your help.\n\nI need to find some armor plates for a guy. He's a frequent performer, so it's time to give him an upgrade to get the crowd excited. That's the thing about shows, you don't add wood in time, the fire goes out.\n\nWell, now go get me some armor plates. \n\nThe crowd's gonna squeal when they see him!",
"68341b407559f4e6d50bc0ce failMessageText": "",
"68341b407559f4e6d50bc0ce successMessageText": "Just what I needed! Not much more to go. Everyone will be thrilled when they see the results, I promise! Here's a helmet as a reward. His last owner has a better one now, ha!",
"68341b407559f4e6d50bc0d1": "Hand over the found in raid items: Class 4 or higher ballistic plates",
"68341b407559f4e6d50bc0ce acceptPlayerMessage": "",
"68341b407559f4e6d50bc0ce declinePlayerMessage": "",
"68341b407559f4e6d50bc0ce completePlayerMessage": "",
"68341c4babec72d95d0c1260 name": "Create a Distraction - Part 1 [PVE ZONE]",
"68341c4babec72d95d0c1260 description": "Look, you're starting to feel like family to me. Like a brother! I think I can hook you up with some serious work.\n\nI've got some co-founders in the Arena, Kaban and Kollontay, maybe you know them. Thought they were cool guys, but now they decided to play politics. They want to put their champion in the Arena, can you imagine? And a good champion brings in so much money, you'd know. It's gonna take a lot of time and money to rebuild the business.\n\nWe need to put a scare into these guys so they realize they're crossing the line. Take some explosive bricks and plant them inside the cafe in the city center. Without detonators. We're not gonna blow anything up, but just make it look like a big deal. Let them run around with their asses on fire.",
"68341c4babec72d95d0c1260 failMessageText": "",
"68341c4babec72d95d0c1260 successMessageText": "Ha, you should have seen the chaos when they found the bricks! What a show! It's a damn shame we didn't film the whole thing... You did a good job. Here's your reward.",
"68341c4babec72d95d0c1263": "Plant TP-200 TNT bricks on the second floor of the cafe on Ground Zero",
"68341c4babec72d95d0c1260 acceptPlayerMessage": "",
"68341c4babec72d95d0c1260 declinePlayerMessage": "",
"68341c4babec72d95d0c1260 completePlayerMessage": "",
"68341d7d7559f4e6d50bc0db name": "Create a Distraction - Part 2 [PVE ZONE]",
"68341d7d7559f4e6d50bc0db description": "Kaban and Kollontay shit themselves alright, but that wasn't good enough for me. I'd like to finish them off. You don't have to help me with that, of course, but...\n\nI already have a plan. You need to go down to their places and shoot their bodyguards or whatever they're called. Everyone in there is a trusted person for those two, so they're the perfect targets. BUT! Make sure Kaban and Kollontay themselves are unharmed!",
"68341d7d7559f4e6d50bc0db failMessageText": "Can't you see who you're shooting at?! I had such high hopes for you.",
"68341d7d7559f4e6d50bc0db successMessageText": "Good work! Kaban and Kollontay are already kicking up a storm. I think soon enough they'll come to me trying to leave this business.\n\nHere's your well deserved reward.",
"68341d7d7559f4e6d50bc0de": "Eliminate Kaban's or Kollontay's guards on Streets of Tarkov",
"68341d7d7559f4e6d50bc0e0": "You must not kill Kaban or Kollontay while the task is active",
"68341d7d7559f4e6d50bc0db acceptPlayerMessage": "",
"68341d7d7559f4e6d50bc0db declinePlayerMessage": "",
"68341d7d7559f4e6d50bc0db completePlayerMessage": "",
"68341eb25619c8e2a9031501 name": "To Great Heights! - Part 1 [PVE ZONE]",
"68341eb25619c8e2a9031501 description": "Well-well, you've finished your first assessment. I think it's right about time for a new champion of the Arena to rise. And it's going to be you. By consent, of course. We don't practice cruelty here, haha!\n\nI can help you reach heights and riches beyond your wildest dreams. You just have to take me up on my offer. But, you know, actions always trump words. So go ahead, enter the Arena and win. That's how I will know you're ready to push forward.",
"68341eb25619c8e2a9031501 failMessageText": "",
"68341eb25619c8e2a9031501 successMessageText": "I never doubted you for a second, brother! But remember, we're here to entertain people. We need a bigger show! Sometimes it looks like you're just shooting cans, you know.",
"68341eb25619c8e2a9031504": "Win a match in CheckPoint or LastHero mode in Arena",
"68341eb25619c8e2a9031501 acceptPlayerMessage": "",
"68341eb25619c8e2a9031501 declinePlayerMessage": "",
"68341eb25619c8e2a9031501 completePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a name": "To Great Heights! - Part 2 [PVE ZONE]",
"68341f6fe2e7ef70a3060a0a description": "You're under my wing from now on, brother. I'll make sure you get progress good, but you're gonna have to get your ass in gear more often.\n\nLet's start with the basics. The Arena's in Tarkov, but the biggest sponsors are overseas. They watch every game, place bets, throw money at the favorites. And you need to get some of those big shots interested. Get their attention, show them you're worthy. Make a name for yourself. One win alone isn't enough to do it. Show them you can make a thrilling performance!",
"68341f6fe2e7ef70a3060a0a failMessageText": "",
"68341f6fe2e7ef70a3060a0a successMessageText": "I see the progress you're making! They're starting to talk about you overseas. People are interested. It's a sign that you're doing the right thing!",
"68341f6fe2e7ef70a3060a0d": "Win a match in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68341f6fe2e7ef70a3060a0a acceptPlayerMessage": "",
"68341f6fe2e7ef70a3060a0a declinePlayerMessage": "",
"68341f6fe2e7ef70a3060a0a completePlayerMessage": "",
"6834202a186efa3c5b07f9a2 name": "To Great Heights! - Part 3 [PVE ZONE]",
"6834202a186efa3c5b07f9a2 description": "You're doing great! But it's too early to stop. Shine your face more often, impress the audience. Stand out. Become the one they talk about, the one they come to see. Then the cash will come, and then other goodies: cars, girls... Although Tarkov is a little short on the latter.\n\nAnyway, the Arena is a great career opportunity right now, ha!",
"6834202a186efa3c5b07f9a2 failMessageText": "",
"6834202a186efa3c5b07f9a2 successMessageText": "And now you're one step closer to the big leagues! Respect, brother.",
"6834202a186efa3c5b07f9a5": "Win a match while claiming at least 3rd place in TeamFight, BlastGang, or CheckPoint mode in Arena",
"6834202a186efa3c5b07f9a2 acceptPlayerMessage": "",
"6834202a186efa3c5b07f9a2 declinePlayerMessage": "",
"6834202a186efa3c5b07f9a2 completePlayerMessage": "",
"683421515619c8e2a9031511 name": "To Great Heights! - Part 4 [PVE ZONE]",
"683421515619c8e2a9031511 description": "How's the mood? Battle-ready? Ready to shine in the Arena once more? Ready to shred some motherfuckers? The odds are still stacked against you, so don't let the audience down!\n\nSpeaking of that. You got some money? You gotta bet on yourself and then win six times. You'll make tons of cash, and you'll be famous. Bring the money, I'll organize everything. Just be warned: if you lose five times, you start again.",
"683421515619c8e2a9031511 failMessageText": "Oh man, you almost did it. Try again, the audience still seems to favor you.",
"683421515619c8e2a9031511 successMessageText": "Here's your paycheck. I deducted all my services from it straight away: bribing opponents, fees, and all that. What, you thought I work for free?",
"683421515619c8e2a9031514": "Hand over Roubles from the EFT balance",
"683421515619c8e2a9031515": "Win three out of six matches in TeamFight, BlastGang, or CheckPoint mode in Arena",
"683421515619c8e2a9031518": "Failure Condition: Lose 5 matches",
"683421515619c8e2a903151b": "Failure condition: Lose 5 matches",
"683421515619c8e2a9031511 acceptPlayerMessage": "",
"683421515619c8e2a9031511 declinePlayerMessage": "",
"683421515619c8e2a9031511 completePlayerMessage": "",
"68342265a8d674b5740b31f0 name": "To Great Heights! - Part 5 [PVE ZONE]",
"68342265a8d674b5740b31f0 description": "I have good news! Excellent news, in fact! I hope you've already picked out a little apartment in Tarkov's elite neighborhood, because you'll have it soon with all this money! Kidding. All the houses in those neighborhoods are soon gonna collapse anyway.\n\nAnyway, some very powerful people from across the border are interested in you. Powerful and wealthy. I can't tell you their names, it's a business secret, and I'm not violating what I signed. So, these people are ready to take you under their wing and sponsor you heavily, but first they want guarantees.\n\nYou need to become the champion. Fly high, soar above the rest. You're gonna have to spend more time in the Arena. I can see it in your eyes that you're ready.",
"68342265a8d674b5740b31f0 failMessageText": "",
"68342265a8d674b5740b31f0 successMessageText": "You're really good. A very famous French man — I won't tell you his name for privacy — is interested in you. Lispy as hell, but he's offering good money. I've already arranged for your sponsorship.",
"68342265a8d674b5740b31f3": "Win two matches in a row in TeamFight, BlastGang, or CheckPoint mode in Arena",
"68342265a8d674b5740b31f0 acceptPlayerMessage": "",
"68342265a8d674b5740b31f0 declinePlayerMessage": "",
"68342265a8d674b5740b31f0 completePlayerMessage": "",
"6834233fecd5cf3a440d855b name": "Against the Conscience - Part 1 [PVE ZONE]",
"6834233fecd5cf3a440d855b description": "Hello. I hear you're working for Ref now. I've been keeping tabs on you for a while. \n\nI used to know a man who got tangled up just like you. He was Ref's previous champion for a while and then all of a sudden he disappeared. And I know for sure this had nothing to do with Kaban and Kollontay. \n\nIf you don't want to vanish the same way this guy did, look for the last champion's apartment. I believe there's something of interest left there. The champion used to hang out with the smugglers in Dorms on Customs. Maybe you'll find some clues on how to get into the apartment.",
"6834233fecd5cf3a440d855b failMessageText": "",
"6834233fecd5cf3a440d855b successMessageText": "You want to ask Ref yourself? Well, it was nice knowing you.",
"6834233fecd5cf3a440d855f": "Locate the old champion's room on Customs",
"6834233fecd5cf3a440d8561": "Find out what happened to the champion",
"6834233fecd5cf3a440d8564": "Survive and extract from the location",
"6834233fecd5cf3a440d8567": "Locate and obtain the key at the smugglers' base on Shoreline",
"6834233fecd5cf3a440d855b acceptPlayerMessage": "",
"6834233fecd5cf3a440d855b declinePlayerMessage": "",
"6834233fecd5cf3a440d855b completePlayerMessage": "",
"68342446a8d674b5740b31fc name": "Against the Conscience - Part 2 [PVE ZONE]",
"68342446a8d674b5740b31fc description": "So you're saying you were in the last champion's apartment? All right then. I'll pretend like it never happened. Just remember, curiosity killed the cat. And the last champion, too. He was a good guy, I liked him, but he got soft, lost his touch.\n\nYou should be practicing more, not wandering around the city. Otherwise, your ranking will start to drop.",
"68342446a8d674b5740b31fc failMessageText": "",
"68342446a8d674b5740b31fc successMessageText": "There you go! Time should be spent improving your skills. Who knows what happens if you don't?",
"68342446a8d674b5740b31ff": "Eliminate enemies in any game mode in Arena",
"68342446a8d674b5740b31fc acceptPlayerMessage": "",
"68342446a8d674b5740b31fc declinePlayerMessage": "",
"68342446a8d674b5740b31fc completePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef name": "Decisions, Decisions [PVE ZONE]",
"6834254f2f0e2a7eb90b62ef description": "I've been hearing rumors... Very unpleasant rumors. They say you're trying to dig my business up.\n\nLook, we've known each other for a while. You're like a brother to me! Don't do something you'll regret later. The less you know, the better you sleep, you hear that?\n\nUntil I'm absolutely confident in you, I'm gonna have my men watching you. I don't want you pulling any stunts, champ. And if you find anything during your little date with the old champion, bring it to me. Then we can forget about this happy little accident.",
"6834254f2f0e2a7eb90b62ef failMessageText": "They put a gun to your head and took everything, huh? Don't take me for an idiot! Where's the fucking diary now? Fucking hell. Whatever, I'll deal with it later.",
"6834254f2f0e2a7eb90b62ef successMessageText": "You made the right choice. Never doubted you, brother. All right, no more funny business from now on, you hear me?",
"6834254f2f0e2a7eb90b62f1": "Locate and obtain the compromising information on Ref",
"6834254f2f0e2a7eb90b62f2": "Hand over the found info",
"6834254f2f0e2a7eb90b62f4": "Failure condition: Bring the information to Fence",
"6834254f2f0e2a7eb90b62f5": "You must not complete the task Surprise Gift",
"6834254f2f0e2a7eb90b62ef acceptPlayerMessage": "",
"6834254f2f0e2a7eb90b62ef declinePlayerMessage": "",
"6834254f2f0e2a7eb90b62ef completePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 name": "Between Two Fires [PVE ZONE]",
"683425dd8f5b18d29a05d9d1 description": "So you saw a dead body. Did you search it? Did you check around it? I'm just pointing out that you're blind. The champion, as far as I know, kept a journal. Yeah, like some teenager, but that's actually working in your favor.\n\nWhy don't you go over there again and take a closer look? There's got to be more information in the journal about Ref, some dirt on him. Do that if you want to stop being expendable in the Arena.\n\nAnd one more thing: if you bring me any info on Ref that'll be worthy of my time, I'll pay you well.",
"683425dd8f5b18d29a05d9d1 failMessageText": "You want to stay under Ref's skirt? You do you then.",
"683425dd8f5b18d29a05d9d1 successMessageText": "Well done. Glad you took your fate by the balls.\n\nMake sure you speak nothing of this to Ref.",
"683425dd8f5b18d29a05d9d3": "Locate the old champion's hideout",
"683425dd8f5b18d29a05d9d4": "Return to the old champion's hideout on Customs",
"683425dd8f5b18d29a05d9d6": "Locate and obtain the compromising information on Ref",
"683425dd8f5b18d29a05d9d8": "Hand over the found info",
"683425dd8f5b18d29a05d9da": "You must not complete the task Decisions, Decisions",
"683425dd8f5b18d29a05d9db": "You must not complete the task Surprise Gift",
"683425dd8f5b18d29a05d9d1 acceptPlayerMessage": "",
"683425dd8f5b18d29a05d9d1 declinePlayerMessage": "",
"683425dd8f5b18d29a05d9d1 completePlayerMessage": "",
"683427418f5b18d29a05d9e3 name": "Surprise Gift [PVE ZONE]",
"683427418f5b18d29a05d9e3 description": "I heard you got involved in this affair with Fence and Ref. So of course you decided to come to me. You want to mess with Ref? Hmm, that would be beneficial to me. Bring me the dirt on him, and I'll find a way to use it.",
"683427418f5b18d29a05d9e3 failMessageText": "So why even come to me in the first place if you're just going to give the intel to one of those two? ",
"683427418f5b18d29a05d9e3 successMessageText": "I'm glad you understand who it's more advantageous to be friends with.",
"683427418f5b18d29a05d9e5": "Return to the old champion's hideout on Customs",
"683427418f5b18d29a05d9e7": "Locate and obtain the compromising information on Ref",
"683427418f5b18d29a05d9e9": "Hand over the found info",
"683427418f5b18d29a05d9eb": "You must not complete the task Decisions, Decisions",
"683427418f5b18d29a05d9ec": "You must not complete the task Between Two Fires",
"683427418f5b18d29a05d9e3 acceptPlayerMessage": "You'll get your info.",
"683427418f5b18d29a05d9e3 declinePlayerMessage": "",
"683427418f5b18d29a05d9e3 completePlayerMessage": "Here's all I could find on Ref.",
"6834287b7559f4e6d50bc0fa name": "Postponed Reward [PVE ZONE]",
"6834287b7559f4e6d50bc0fa description": "Well, you fucked up with the evidence in a very embarrassing way, but sure, I'll keep my word. I'll get you your fucking container. But now I'm gonna ask you for something else, since things got so ugly.",
"6834287b7559f4e6d50bc0fa failMessageText": "",
"6834287b7559f4e6d50bc0fa successMessageText": "All right, you've earned your reward. But you better know I'm not gonna take any more of your bullshit. You start digging again, you'll end up like that old champion.",
"6834287b7559f4e6d50bc0fd": "Hand over the item: Lega Medal",
"6834287b7559f4e6d50bc0fa acceptPlayerMessage": "",
"6834287b7559f4e6d50bc0fa declinePlayerMessage": "",
"6834287b7559f4e6d50bc0fa 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": "",
@@ -29222,6 +29523,151 @@
"68481881f43abfdda2058369 acceptPlayerMessage": "",
"68481881f43abfdda2058369 declinePlayerMessage": "",
"68481881f43abfdda2058369 completePlayerMessage": "",
"6863cf925eaeb676d50a9651 name": "Friend from Norvinsk - Part 1",
"6863cf925eaeb676d50a9651 description": "I had a contact with a programmer from our local military base. He served there in the network and hacking unit. We met before the war started — at a hackathon in Norvinsk.\n\nAfter the conflict begun, he disappeared. According to my sources, he hasn't crossed the Tarkov border. I have reason to believe he's still in the city.\n\nTake a look around the reserve base. If you find any sign of him, let me know. He's got serious potential. We can't afford to lose guys like him.",
"6863cf925eaeb676d50a9651 failMessageText": "",
"6863cf925eaeb676d50a9651 successMessageText": "Nothing so far? Well that's a bummer. I'll see where else he could be hiding.",
"6863d3483b99c746b7d4edf9": "Scout the command bunker offices on Reserve",
"6863d35bf8cc5354981d4ae2": "Scout the radar station archives on Reserve",
"6863d36f469fe5d17ca13f26": "Scout the medical building commander's office on Reserve",
"6863d37913282c3185f4963d": "Scout the educational building offices on Reserve",
"6863d38fa49de200bca14224": "Survive and extract from the location",
"6863cf925eaeb676d50a9651 acceptPlayerMessage": "",
"6863cf925eaeb676d50a9651 declinePlayerMessage": "",
"6863cf925eaeb676d50a9651 completePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 name": "Friend from Norvinsk - Part 2",
"6863d9bcd3bfdcb2bc075956 description": "Glad you came by, mercenary. I have just remembered something: that friend of mine always wanted to visit the health resort. He kept saying he really needed a vacation, but he couldn't find the time.\n\nHe also mentioned a project, something big, something that would \"change the rules\". And a meeting with someone important. Where exactly, that I don't know. You'll have to investigate.",
"6863d9bcd3bfdcb2bc075956 failMessageText": "",
"6863d9bcd3bfdcb2bc075956 successMessageText": "So he did visit the health resort in the end. That means that meeting also took place. Now the key is to figure out what happened to him after.",
"6863e054c8f163e8b4bca826": "Locate and obtain anything that could help with the investigation at the Health Resort on Shoreline",
"6863e060345c735419ff5b8c": "Hand over the found info",
"6863d9bcd3bfdcb2bc075956 acceptPlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 declinePlayerMessage": "",
"6863d9bcd3bfdcb2bc075956 completePlayerMessage": "",
"6863e09a5f4d17fd3e01feee name": "Friend from Norvinsk - Part 3",
"6863e09a5f4d17fd3e01feee description": "Hey, so I'm going through his phone now. It's not a walk in the park — he specializes in encryption, he knows what he's doing. But I might have a clue. I found mention of a diary in his notes. Seems like my friend had a hunch something was gonna happen. A Moleskine diary, he always carried it with him. We need to find it.\n\nIf you don't find it at the resort, that means the Scavs have probably snatched it already. I suggest you walk along the shore and \"ask\" the locals. Maybe someone will have it. You know how it is in Tarkov.",
"6863e09a5f4d17fd3e01feee failMessageText": "",
"6863e09a5f4d17fd3e01feee successMessageText": "So the Scavs did snatch it, huh. Interesting. Let's try and decrypt his notes.",
"6863e0ddcc3c166557cafb02": "Eliminate Scavs",
"6864032814ff9de0dac01d6e": "Obtain any information on the diary from the Scavs",
"68640359fd3146c210ee3029": "Locate and obtain Mechanic friend's diary",
"686403674743ebae0e0e5441": "Hand over the found item",
"6863e09a5f4d17fd3e01feee acceptPlayerMessage": "",
"6863e09a5f4d17fd3e01feee declinePlayerMessage": "",
"6863e09a5f4d17fd3e01feee completePlayerMessage": "",
"686403eeb4aaef121c0f0f06 name": "Friend from Norvinsk - Part 4",
"686403eeb4aaef121c0f0f06 description": "Wouldn't say we're at the finish line, but we're definitely getting close. We need additional electronics for the decryption. Hardware fails quickly, it's pretty common. I need CPUs, RAM sticks, and a graphics card.\n\nTime-wise, without these components, the decryption will take about a day. With them, it's almost instantaneous.",
"686403eeb4aaef121c0f0f06 failMessageText": "",
"686403eeb4aaef121c0f0f06 successMessageText": "Excellent. That'll seriously cut down the decryption time.",
"686404255d33a395fc466b61": "Hand over the found in raid item: PC CPU",
"6864043476d267246cfce5b3": "Hand over the found in raid item: RAM stick",
"6864044a289d4d4c5f337cf8": "Hand over the found in raid item: Printed circuit board or Microcontroller board",
"686403eeb4aaef121c0f0f06 acceptPlayerMessage": "",
"686403eeb4aaef121c0f0f06 declinePlayerMessage": "",
"686403eeb4aaef121c0f0f06 completePlayerMessage": "",
"686404d348e7bb4146002cac name": "Friend from Norvinsk - Part 5",
"686404d348e7bb4146002cac description": "With your help, I figured out the decryption way quicker — both in the phone and the diary. Just one last issue.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't overdo my generosity.",
"686404d348e7bb4146002cac failMessageText": "",
"686404d348e7bb4146002cac successMessageText": "Oh wow, you figured it out. Great. Anyway, I'll check what's on this disk and contact you.",
"686407a72737deb604314e16": "Figure out the cipher and hand over the found item",
"686407ff1250f86c92d09ad7": "Locate the place mentioned in the cipher",
"68640823f018e0b92ac8d368": "Stash the copy of the diary in the specified location",
"686404d348e7bb4146002cac acceptPlayerMessage": "",
"686404d348e7bb4146002cac declinePlayerMessage": "",
"686404d348e7bb4146002cac completePlayerMessage": "",
"6864fb4e7e3252831403067e name": "Friend from Norvinsk - Part 5",
"6864fb4e7e3252831403067e description": "Okay, I was able to handle everything without your help. But I will not tolerate this kind of uncaring attitude again.\n\nI managed to extract a strange phrase: \"Diary. wvyglv. oiphxifq: sbb onfz qulve. rgx: ssemddvyl\". This is clearly a Vigenère cipher. It needs a key, but my friend didn't leave it anywhere in his notes. We'll have to figure it out ourselves.\n\nHere are some copies of the diary. I'll keep the original for now. If you lose it, you can have another one from me. Just don't abuse my generosity.",
"6864fb4e7e3252831403067e failMessageText": "",
"6864fb4e7e3252831403067e successMessageText": "Oh wow, you figured it out. Don't want to know the details, that's not my business. Anyway, I'll check what's on the disk and contact you.",
"6864fb4e7e32528314030680": "Figure out the cipher and hand over the found item",
"6864fb4e7e32528314030681": "Locate the place mentioned in the cipher",
"6864fb4e7e32528314030683": "Stash the copy of the diary in the specified location",
"6864fb4e7e3252831403067e acceptPlayerMessage": "",
"6864fb4e7e3252831403067e declinePlayerMessage": "",
"6864fb4e7e3252831403067e completePlayerMessage": "",
"6864fcef9809a149400dd2ee name": "Breathing Room",
"6864fcef9809a149400dd2ee description": "You got here just in time. I've had a look at the disk. It's a build of some text game. I don't have time for it right now though, I've got too many weapon orders at hand.\n\nI'll make you a deal. You help me build one gun, and I'll give you the disk. You'll figure it out on your own. Then tell me if there's anything interesting on it. Maybe I'll take a look at it when I have time.\n\nI need an IWI UZI with specific adjustments: ergonomics over 60, recoil sum no more than 220, sighting range over 200, and slap a suppressor on that thing as well.",
"6864fcef9809a149400dd2ee failMessageText": "",
"6864fcef9809a149400dd2ee successMessageText": "Good job. It'll help me get my tasks done faster. Here's the disk.",
"68650e9f3fcd447ed9be380c": "Modify an IWI UZI to comply with the given specifications",
"6864fcef9809a149400dd2ee acceptPlayerMessage": "",
"6864fcef9809a149400dd2ee declinePlayerMessage": "",
"6864fcef9809a149400dd2ee completePlayerMessage": "",
"68650d08a1f188f84d0f5993 name": "Progression Difficulties - Part 1",
"68650d08a1f188f84d0f5993 description": "Hello again. Did you play it? How was it? I hope we didn't waste our time looking for that game. Huh? You're stuck? A password? Just look in the game bro. Nothing? Hm...\n\nAlright. Hand me the disk. I'll look again on the phone and the diary. There might be something.",
"68650d08a1f188f84d0f5993 failMessageText": "",
"68650d08a1f188f84d0f5993 successMessageText": "Come back later. I'll check it out and let you know what I find.",
"68650d518edb37718e316b8f": "Hand over the drive with the game",
"68650d08a1f188f84d0f5993 acceptPlayerMessage": "",
"68650d08a1f188f84d0f5993 declinePlayerMessage": "",
"68650d08a1f188f84d0f5993 completePlayerMessage": "",
"686524fe9809a149400dd301 name": "Progression Difficulties - Part 2",
"686524fe9809a149400dd301 description": "So, I progressed to the same stage you did. Honestly? It feels weird. It's like it's all done on purpose. Like there's a hidden layer, you know?\n\nMy friend clearly went missing for a reason. And it seems like some pretty powerful people had a hand in it. I think he knew what was coming, so he set up these fool traps in his game.\n\nLooks like they tried to smuggle it out of Tarkov along with the military records. They were transferred to flash drives and encrypted.\n\nFind a few of those flash drives, and decrypt the data. It'll have the word you're looking for. And something important to me.",
"686524fe9809a149400dd301 failMessageText": "",
"686524fe9809a149400dd301 successMessageText": "This password... What a game you've remembered, Nikita. All right, everything went smoothly. You got your word, and I got what I needed.",
"686524fe9809a149400dd303": "Hand over the item: Decrypted intelligence folder",
"686524fe9809a149400dd301 acceptPlayerMessage": "",
"686524fe9809a149400dd301 declinePlayerMessage": "",
"686524fe9809a149400dd301 completePlayerMessage": "",
"686530ba9ed06113720e2c37 name": "External Interest",
"686530ba9ed06113720e2c37 description": "Hello. There are some interesting rumors going around... Yes, about you and some programmer from the reserve base. And what a coincidence: we're interested in him too. Not him, to be specific, but what he left behind in Tarkov. We need everything you've got. Everything. So would you be so kind as to pass it all along?",
"686530ba9ed06113720e2c37 failMessageText": "",
"686530ba9ed06113720e2c37 successMessageText": "Good. good. Don't tell anybody about this. You know I like to solve problems quick. And people who talk too much are real problems.",
"686530ba9ed06113720e2c39": "Hand over the copy of the programmer's diary",
"686530ba9ed06113720e2c37 acceptPlayerMessage": "",
"686530ba9ed06113720e2c37 declinePlayerMessage": "",
"686530ba9ed06113720e2c37 completePlayerMessage": "",
"686531bc87eb213a8e078e99 name": "Last Spurt - Pioneer",
"686531bc87eb213a8e078e99 description": "Fence and those behind him don't want anyone to know about it? Seems like many things are becoming clear. Now I understand why my friend wanted these things out in the open. Too bad he couldn't make it in time.\n\nYou want to keep going? Another disk? It might be somewhere in Tarkov, but I don't know where. I've already given you all the information I can.\n\nGo to the reserve base again, maybe you'll find the disk there. Or maybe you won't. If you do, bring it to me, I'll copy it and distribute it. Let their plans go to hell.",
"686531bc87eb213a8e078e99 failMessageText": "",
"686531bc87eb213a8e078e99 successMessageText": "So you did find it? Amazing! I'll copy it for everyone to see.",
"6865322f4a9b6e64e3477794": "Locate and obtain the second game disk on Reserve",
"6865323a701584c5f0b986be": "Hand over the found item",
"688e09b8b382e272af9ab263": "Hand over the beta version game disk",
"68a5943aef22a6ad81390969": "Locate and obtain the second game disk on Reserve",
"686531bc87eb213a8e078e99 acceptPlayerMessage": "",
"686531bc87eb213a8e078e99 declinePlayerMessage": "",
"686531bc87eb213a8e078e99 completePlayerMessage": "",
"686532c4a85e50c6e40ed848 name": "Last Spurt - Following the Footsteps",
"686532c4a85e50c6e40ed848 description": "Hello. I know why you're here. The disk you're looking for has already been found. A pioneer, if I may say so, has done his best to find it as quick as possible.\n\nI can give you the disk, but not for free. You know how this works. Find me three intact M4A1s. I won't take any old or broken junk. You bring it in, and I'll give you the disk.",
"686532c4a85e50c6e40ed848 failMessageText": "",
"686532c4a85e50c6e40ed848 successMessageText": "Good, all intact. Here you go, as promised. It's yours now.",
"686532c4a85e50c6e40ed84b": "Hand over the item with at least 90% durability: Colt M4A1 assault rifle",
"686532c4a85e50c6e40ed848 acceptPlayerMessage": "",
"686532c4a85e50c6e40ed848 declinePlayerMessage": "",
"686532c4a85e50c6e40ed848 completePlayerMessage": "",
"6894bc838bbdab4ab109929c name": "Friend from Norvinsk - Alternative Solution",
"6894bc838bbdab4ab109929c description": "You're taking too long to complete your task. Did the Scavs really snatch everything? Oh well, doesn't matter. My schedule is packed for the next few days, so we need to hurry up. Here's what I suggest: give me the money and I'll buy everything we need myself. It'll be faster that way.\n\nOr you can continue gathering the components yourself if you prefer.",
"6894bc838bbdab4ab109929c failMessageText": "",
"6894bc838bbdab4ab109929c successMessageText": "Alright, things will be much quicker this way.",
"6894bd9c3580dea50b76aac2": "Hand over RUB",
"6894bc838bbdab4ab109929c acceptPlayerMessage": "",
"6894bc838bbdab4ab109929c declinePlayerMessage": "",
"6894bc838bbdab4ab109929c completePlayerMessage": "",
"689610e431dc963a7205a121 name": "Game Review - Part 1",
"689610e431dc963a7205a121 description": "Now that you have the disk, all you need to do is find time to play the game. Imagine that you are a gaming journalist who needs to write a review of the game afterwards. It always helped me. I mean back when the latest game development innovations were still being brought to Tarkov.\n\nOh, and make sure you have everything you need to run the game. Get a proper rest space.",
"689610e431dc963a7205a121 failMessageText": "",
"689610e431dc963a7205a121 successMessageText": "So, how's the game? Soft-locked, huh? Very interesting...",
"6896181b5acce44d52cb6171": "Explore the game disk's contents",
"689610e431dc963a7205a121 acceptPlayerMessage": "",
"689610e431dc963a7205a121 declinePlayerMessage": "",
"689610e431dc963a7205a121 completePlayerMessage": "",
"68973efb9e616ec3130d2c69 name": "Game Review - Part 2",
"68973efb9e616ec3130d2c69 description": "You have the disk, so keep playing. And try not to die so often. I don't think you'll get an achievement for that.",
"68973efb9e616ec3130d2c69 failMessageText": "",
"68973efb9e616ec3130d2c69 successMessageText": "Soft-locked again? Seriously? Okay, let's handle it.",
"68973f9deb8e761f4af7aa46": "Continue exploring the disk's contents",
"68973efb9e616ec3130d2c69 acceptPlayerMessage": "",
"68973efb9e616ec3130d2c69 declinePlayerMessage": "",
"68973efb9e616ec3130d2c69 completePlayerMessage": "",
"6897401030d0c0235c051b2c name": "Game Review - Part 3",
"6897401030d0c0235c051b2c description": "Now you have the full version. You'll have to go through it all the way to the end, otherwise it won't work.\n\nWe need to figure out what my friend wanted to convey and why it was so important.",
"6897401030d0c0235c051b2c failMessageText": "",
"6897401030d0c0235c051b2c successMessageText": "What?.. This ending... You can tell right away that Targrad is an allusion to Tarkov. It's unnerving.\n\nMy acquaintance knew exactly how it would all end.\n\nToo bad he didn't spread his warning game sooner.\n\nNow all of it has already lost its meaning.",
"689742854d0559304e040e58": "Explore the game disk's contents",
"6897401030d0c0235c051b2c acceptPlayerMessage": "",
"6897401030d0c0235c051b2c declinePlayerMessage": "",
"6897401030d0c0235c051b2c completePlayerMessage": "",
"616041eb031af660100c9967 startedMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 failMessageText 54cb50c76803fa8b248b4571 0": " ",
"616041eb031af660100c9967 successMessageText 54cb50c76803fa8b248b4571 0": "All clear, you say? Good work then, soldier.",
@@ -30347,6 +30793,9 @@
"6842c27a38482d35ac0bd847 name": "Higher and Higher",
"6842c27a38482d35ac0bd847 description": "Earn the Prestige level 4",
"6842c27a38482d35ac0bd847 successMessage": "",
"68936a7a672ffe94a509446b name": "Targrad Tales",
"68936a7a672ffe94a509446b description": "He that steals honey, should beware of the sting.",
"68936a7a672ffe94a509446b successMessage": "",
"674724a154d58001c3aae177 name": "",
"674724a154d58001c3aae177 description": "",
"674ed02cb6db2d9636812abc name": "Slot 1",

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